diff options
author | Steven Knight <knight@baldmt.com> | 2005-07-04 23:51:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-07-04 23:51:28 (GMT) |
commit | e0a7426d7aff19eb1b7af396086ccebb692a48d3 (patch) | |
tree | d121a6443f3a5bb998c67b507170cff8537ae015 /test | |
parent | 01878e78547c411543d8afb3bd150d090f07447d (diff) | |
download | SCons-e0a7426d7aff19eb1b7af396086ccebb692a48d3.zip SCons-e0a7426d7aff19eb1b7af396086ccebb692a48d3.tar.gz SCons-e0a7426d7aff19eb1b7af396086ccebb692a48d3.tar.bz2 |
Move max_drift from Sig/MD5.py to Node/FS.py.
Diffstat (limited to 'test')
-rw-r--r-- | test/sconsign/script.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/test/sconsign/script.py b/test/sconsign/script.py index 24bcc70..8d2d6a6 100644 --- a/test/sconsign/script.py +++ b/test/sconsign/script.py @@ -519,40 +519,36 @@ hello.obj: \d+ None \d+ \d+ hello.c: \S+ """) -test.run_sconsign(arguments = "-e hello.c -e hello.exe -e hello.obj -d sub1 -f dblite work2/my_sconsign", +test.run_sconsign(arguments = "-e hello.exe -e hello.obj -d sub1 -f dblite work2/my_sconsign", stdout = """\ === sub1: -hello.c: None \d+ \d+ \d+ hello.exe: \d+ None \d+ \d+ hello.obj: \d+ hello.obj: \d+ None \d+ \d+ hello.c: \d+ """) -test.run_sconsign(arguments = "-e hello.c -e hello.exe -e hello.obj -d sub1 -f dblite work2/my_sconsign.dblite", +test.run_sconsign(arguments = "-e hello.exe -e hello.obj -d sub1 -f dblite work2/my_sconsign.dblite", stdout = """\ === sub1: -hello.c: None \d+ \d+ \d+ hello.exe: \S+ None \d+ \d+ hello.obj: \d+ hello.obj: \S+ None \d+ \d+ hello.c: \d+ """) -test.run_sconsign(arguments = "-e hello.c -e hello.exe -e hello.obj -r -d sub1 -f dblite work2/my_sconsign", +test.run_sconsign(arguments = "-e hello.exe -e hello.obj -r -d sub1 -f dblite work2/my_sconsign", stdout = """\ === sub1: -hello.c: None \d+ '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.exe: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.obj: \d+ hello.obj: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.c: \d+ """) -test.run_sconsign(arguments = "-e hello.c -e hello.exe -e hello.obj -r -d sub1 -f dblite work2/my_sconsign.dblite", +test.run_sconsign(arguments = "-e hello.exe -e hello.obj -r -d sub1 -f dblite work2/my_sconsign.dblite", stdout = """\ === sub1: -hello.c: None \d+ '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.exe: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ hello.obj: \d+ hello.obj: \d+ None '\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d' \d+ |