mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 01:32:12 +00:00
Minor stylistic change in the Boost Build test system.
[SVN r79036]
This commit is contained in:
@@ -797,7 +797,7 @@ class Tester(TestCmd.TestCmd):
|
||||
open(e, "w").write(expected)
|
||||
open(a, "w").write(actual)
|
||||
print "DIFFERENCE"
|
||||
if os.system("diff -u " + e + " " + a):
|
||||
if os.system("diff -u %s %s" % (e, a)):
|
||||
print "Unable to compute difference: diff -u %s %s" % (e, a)
|
||||
os.unlink(e)
|
||||
os.unlink(a)
|
||||
|
||||
Reference in New Issue
Block a user