mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
620301858a
into an object. To keep existing code working I have added:
string_init(global);
into base.js. That brings the functions into the global scope for our
existing scripts
(This used to be commit a978484738
)
32 lines
744 B
JavaScript
Executable File
32 lines
744 B
JavaScript
Executable File
#!/usr/bin/env smbscript
|
|
/*
|
|
test sprintf function
|
|
*/
|
|
|
|
string_init(local);
|
|
|
|
function check_result(s, v)
|
|
{
|
|
if (s != v) {
|
|
println("expected '" + v + "' but got '" + s + "'");
|
|
}
|
|
assert(s == v);
|
|
}
|
|
|
|
function xprintf()
|
|
{
|
|
return "XX{" + vsprintf(arguments) + "}XX";
|
|
}
|
|
|
|
check_result(sprintf("%d", 7), "7");
|
|
check_result(sprintf("%04d", 42), "0042");
|
|
check_result(sprintf("my string=%7.2s", "foo%7"), "my string= fo");
|
|
check_result(sprintf("blah=0x%*x", 4, 19), "blah=0x 13");
|
|
check_result(sprintf("blah=0x%0*x", 4, 19), "blah=0x0013");
|
|
check_result(sprintf("blah=%.0f", 1032), "blah=1032");
|
|
check_result(sprintf("%4.2f%%", 72.32), "72.32%");
|
|
|
|
check_result(xprintf("%4.2f%% and %s", 72.32, "foo"),"XX{72.32% and foo}XX");
|
|
|
|
println("ALL OK");
|