[llvm-commits] [zorg] r159506 - /zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py
Duncan Sands
baldrick at free.fr
Sun Jul 1 01:35:45 PDT 2012
Author: baldrick
Date: Sun Jul 1 03:35:45 2012
New Revision: 159506
URL: http://llvm.org/viewvc/llvm-project?rev=159506&view=rev
Log:
Compare the entire object file rather than skipping the first 16 bytes.
This was inherited from the llvm-gcc self-host builds. If someone needs
it then it can be added back as a parameter.
Modified:
zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py?rev=159506&r1=159505&r2=159506&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py Sun Jul 1 03:35:45 2012
@@ -233,8 +233,7 @@
# Check that the dragonegg objects didn't change between stages 2 and 3.
f.addStep(ShellCommand(name='compare.stages',
- command=['sh', '-c', 'for O in *.o ; do ' +
- 'cmp --ignore-initial=16 ' +
+ command=['sh', '-c', 'for O in *.o ; do cmp ' +
'../dragonegg.obj.stage2/$O ' +
'../dragonegg.obj.stage3/$O || exit 1 ; ' +
'done'],
More information about the llvm-commits
mailing list