# HG changeset patch # User Mathieu Lacage # Date 1220560153 25200 # Node ID 5209cecd2aded7323bbb326f491071ebcd36a192 # Parent a74c78bfc30424eaaf031d82112909bed6458f22 bug 312: ./waf check fails. diff -r a74c78bfc304 -r 5209cecd2ade wscript --- a/wscript Thu Sep 04 12:20:02 2008 -0700 +++ b/wscript Thu Sep 04 13:29:13 2008 -0700 @@ -425,7 +425,7 @@ if env['NSC_ENABLED'] == 'yes': nsc_build(bld) -def get_command_template(arguments): +def get_command_template(*arguments): if Params.g_options.valgrind: if Params.g_options.command_template: Params.fatal("Options --command-template and --valgrind are conflicting") @@ -855,7 +855,7 @@ #os.system("./waf --cwd regression/traces --run " + # testName + " > /dev/null 2>&1") Params.g_options.cwd_launch = "traces" - run_program(testName, command_template=get_command_template(arguments)) + run_program(testName, command_template=get_command_template(*arguments)) if verbose: #diffCmd = "diff traces " + refTestDirName + " | head"