&Tmp-String-0 = "foo"
-&Tmp-String-1 := `/bin/echo hello 1234:%{Tmp-String-0} world`
+&Tmp-String-1 := %exec('/bin/echo', "hello 1234:%{Tmp-String-0} world")
if (!(&Tmp-String-1 == "hello 1234:foo world")) {
test_fail
}
-&Tmp-String-1 := `/bin/echo hello %{Tmp-String-0}:1234 world`
+&Tmp-String-1 := %exec('/bin/echo', "hello %{Tmp-String-0}:1234 world")
if (!(&Tmp-String-1 == "hello foo:1234 world")) {
test_fail
}
# User-Password contains characters that need escaping
-&Tmp-String-2 := `/bin/echo %{User-Password}`
+&Tmp-String-2 := %exec('/bin/echo', "%{User-Password}")
if (!(&Tmp-String-2 == &User-Password)) {
test_fail
} else {