[llvm-testresults] buildbot failure in smooshlab on clang-x86_64-darwin10-qa_tests

daniel_dunbar at apple.com daniel_dunbar at apple.com
Thu Sep 30 18:33:30 PDT 2010


The Buildbot has detected a new failure of clang-x86_64-darwin10-qa_tests on smooshlab.
Full details are available at:
 http://smooshlab.apple.com:8010/builders/clang-x86_64-darwin10-qa_tests/builds/1025

Buildbot URL: http://smooshlab.apple.com:8010/

Buildslave for this Build: smoosh-01

Build Reason: 
Build Source Stamp: 115251
Blamelist: akirtzidis,ddunbar,echristo,fjahanian,grosbach,johannes,resistor,sfider

BUILD FAILED: failed test-gcc-4_2-testsuite-gcc test-gcc-4_2-testsuite-g++

sincerely,
 -The Buildbot


================================================================================

CHANGES:
Files:
 lib/Target/MSP430/AsmPrinter/MSP430InstPrinter.cpp
 lib/Target/MSP430/MSP430.td
 lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
 lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
 lib/Target/X86/X86.td
At: Thu 30 Sep 2010 16:46:39
Changed By: grosbach
Comments: Clean up asm writer usage for x86 and msp430 to flag that the writer should
use MC instructions in the printInstruction() method via the tablegen flag
for it rather than a #define prior to including the autogenerated bits.Properties: 




File: lib/Target/ARM/ARMBaseInstrInfo.cpp
At: Thu 30 Sep 2010 16:53:06
Changed By: resistor
Comments: Temporarily add a flag to make it easier to compare the new-style ARM if
conversion heuristics to the old-style ones.
Properties: 




Files:
 lib/Headers/mmintrin.h
 test/CodeGen/mmx-shift-with-immediate.c
At: Thu 30 Sep 2010 17:01:39
Changed By: johannes
Comments: Clang part of MMX rewrite (goes with 115243).

Properties: 




Files:
 test/PCH/cmdline-include.c
 test/PCH/cmdline-include1.h
 test/PCH/cmdline-include2.h
At: Thu 30 Sep 2010 17:01:39
Changed By: akirtzidis
Comments: Add test case I forgot for r115159 (support implicit includes along with PCH).Properties: 




Files:
 gcc/config/i386/i386.c
 gcc/config/i386/llvm-i386-target.h
 gcc/config/i386/llvm-i386.cpp
 gcc/llvm-abi.h
 gcc/llvm-convert.cpp
 gcc/llvm-types.cpp
At: Thu 30 Sep 2010 17:01:54
Changed By: johannes
Comments: llvm-gcc part of MMX rewrite (goes with 115243).

Properties: 




File: lib/System/Unix/Program.inc
At: Thu 30 Sep 2010 17:01:54
Changed By: ddunbar
Comments: Add an explicit initialization to work around what appears to be a valgrind
false positive, at least on Darwin. I haven't filed this, but you can feel free.Properties: 




Files:
 include/llvm/IntrinsicsX86.td
 lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
 lib/Target/X86/X86CallingConv.td
 lib/Target/X86/X86ISelLowering.cpp
 lib/Target/X86/X86ISelLowering.h
 lib/Target/X86/X86InstrFragmentsSIMD.td
 lib/Target/X86/X86InstrMMX.td
 lib/Target/X86/X86MCInstLower.cpp
 lib/Target/X86/X86RegisterInfo.td
 lib/Transforms/IPO/DeadArgumentElimination.cpp
 lib/Transforms/Scalar/ScalarReplAggregates.cpp
 lib/VMCore/AutoUpgrade.cpp
 lib/VMCore/Instructions.cpp
 lib/VMCore/Type.cpp
 test/Assembler/AutoUpgradeIntrinsics.ll
 test/Bitcode/ssse3_palignr.ll.bc
 test/CodeGen/X86/2007-04-25-MMX-PADDQ.ll
 test/CodeGen/X86/2007-05-15-maskmovq.ll
 test/CodeGen/X86/2007-06-15-IntToMMX.ll
 test/CodeGen/X86/2007-07-03-GR64ToVR64.ll
 test/CodeGen/X86/2008-04-08-CoalescerCrash.ll
 test/CodeGen/X86/2008-08-23-64Bit-maskmovq.ll
 test/CodeGen/X86/2008-09-05-sinttofp-2xi32.ll
 test/CodeGen/X86/2009-08-02-mmx-scalar-to-vector.ll
 test/CodeGen/X86/2010-04-23-mmx-movdq2q.ll
 test/CodeGen/X86/fast-isel-bc.ll
 test/CodeGen/X86/mmx-arg-passing.ll
 test/CodeGen/X86/mmx-arg-passing2.ll
 test/CodeGen/X86/mmx-arith.ll
 test/CodeGen/X86/mmx-bitcast-to-i64.ll
 test/CodeGen/X86/mmx-insert-element.ll
 test/CodeGen/X86/mmx-punpckhdq.ll
 test/CodeGen/X86/mmx-shift.ll
 test/CodeGen/X86/mmx-shuffle.ll
 test/CodeGen/X86/mmx-vzmovl-2.ll
 test/CodeGen/X86/mmx-vzmovl.ll
 test/CodeGen/X86/vec_insert-5.ll
 test/CodeGen/X86/vec_insert-7.ll
 test/CodeGen/X86/vec_zero_cse.ll
 utils/TableGen/X86RecognizableInstr.cpp
At: Thu 30 Sep 2010 17:01:54
Changed By: johannes
Comments: Massive rewrite of MMX:  
The x86_mmx type is used for MMX intrinsics, parameters and
return values where these use MMX registers, and is also
supported in load, store, and bitcast.

Only the above operations generate MMX instructions, and optimizations
do not operate on or produce MMX intrinsics. 

MMX-sized vectors <2 x i32> etc. are lowered to XMM or split into
smaller pieces.  Optimizations may occur on these forms and the
result casted back to x86_mmx, provided the result feeds into a
previous existing x86_mmx operation.

The point of all this is prevent optimizations from introducing
MMX operations, which is unsafe due to the EMMS problem.

Properties: 




File: lib/Target/ARM/ARMFastISel.cpp
At: Thu 30 Sep 2010 17:01:54
Changed By: echristo
Comments: Implement double return values in calls. Fixes 
SingleSource/Regression/C/casts.c.
Properties: 




Files:
 lib/CodeGen/CGDebugInfo.cpp
 test/CodeGenObjC/debug-info-default-synth-ivar.m
At: Thu 30 Sep 2010 17:06:32
Changed By: fjahanian
Comments: Output debug info. for ivars declared in class
extension and implementation.
Fixes rdar://8493239.
Properties: 




File: test/CodeGen/X86/2007-04-25-MMX-PADDQ.ll
At: Thu 30 Sep 2010 17:21:43
Changed By: johannes
Comments: Make test not sensitive to register choice.

Properties: 




Files:
 lib/Analysis/CFG.cpp
 test/Analysis/auto-obj-dtors-cfg-output.cpp
At: Thu 30 Sep 2010 17:26:58
Changed By: sfider
Comments: Added:
- Adding LocalScope for CompoundStmt,
- Adding CFGAutomaticObjDtors for end of scope, return, goto, break, continue,
- Regression tests for above cases.
Properties: 




File: lib/VMCore/Instructions.cpp
At: Thu 30 Sep 2010 17:26:59
Changed By: johannes
Comments: Attempt to outwit overly smart compiler.

Properties: 




LOGS:
Last 10 lines of 'stdio':
	# of expected passes		31870
	# of unexpected failures	9951
	# of unexpected successes	27
	# of expected failures		42
	# of unresolved testcases	488
	# of untested testcases		273
	# of unsupported tests		718
	/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-qa_tests/llvm.install/bin/clang  version 2.9 (trunk 115251)
	
	make: *** [check-gcc] Error 1

Last 10 lines of 'dg.sum':
	
	# of expected passes		31870
	# of unexpected failures	9951
	# of unexpected successes	27
	# of expected failures		42
	# of unresolved testcases	488
	# of untested testcases		273
	# of unsupported tests		718
	/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-qa_tests/llvm.install/bin/clang  version 2.9 (trunk 115251)
	

Last 10 lines of 'warnings':
	FAIL: gcc.dg/format/miss-5.c  -DWIDE  return type warning (test for warnings, line 20)
	FAIL: gcc.dg/format/miss-5.c  -DWIDE  return type warning (test for warnings, line 38)
	FAIL: gcc.dg/format/miss-6.c   parameter passing warning (test for warnings, line 23)
	FAIL: gcc.dg/format/miss-6.c   parameter passing warning (test for warnings, line 28)
	FAIL: gcc.dg/format/miss-6.c  -DWIDE  parameter passing warning (test for warnings, line 23)
	FAIL: gcc.dg/format/miss-6.c  -DWIDE  parameter passing warning (test for warnings, line 28)
	FAIL: gcc.dg/format/sec-1.c   security warning (test for warnings, line 11)
	FAIL: gcc.dg/format/sec-1.c  -DWIDE  security warning (test for warnings, line 11)
	FAIL: gcc.dg/format/z-1.c   bogus printf warning (test for bogus messages, line 27)
	FAIL: gcc.dg/format/z-1.c  -DWIDE  bogus printf warning (test for bogus messages, line 27)

Last 10 lines of 'tests.FAIL':
	gcc.apple/5618945-1.c (test for excess errors)
	gcc.apple/5618945-3.c (test for excess errors)
	gcc.dg/compat/vector-1 c_compat_x_alt.o-c_compat_y_tst.o execute "-m32","-m32"
	gcc.target/i386/mmx-1.c (test for excess errors)
	gcc.target/i386/mmx-2.c (test for excess errors)
	gcc.target/i386/pr21101.c (test for excess errors)

Last 10 lines of 'tests.XFAIL':
	gcc.dg/torture/fp-int-convert-float128-timode.c  -O3 -g  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128-timode.c  -Os  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -O0  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -O1  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -O2  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -O3 -fomit-frame-pointer  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -O3 -g  (test for excess errors)
	gcc.dg/torture/fp-int-convert-float128.c  -Os  (test for excess errors)
	gcc.dg/uninit-13.c uninit (test for warnings, line 9)
	gcc.dg/uninit-B.c uninit i warning (test for warnings, line 12)

Last 10 lines of 'tests.IGNORE FAIL':
	tmpdir-gcc.dg-struct-layout-1/t027 c_compat_x_tst.o-c_compat_y_alt.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t027 c_compat_x_tst.o-c_compat_y_alt.o execute "-m64","-m64"
	tmpdir-gcc.dg-struct-layout-1/t027 c_compat_x_tst.o-c_compat_y_tst.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t027 c_compat_x_tst.o-c_compat_y_tst.o execute "-m64","-m64"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_alt.o-c_compat_y_tst.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_alt.o-c_compat_y_tst.o execute "-m64","-m64"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_tst.o-c_compat_y_alt.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_tst.o-c_compat_y_alt.o execute "-m64","-m64"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_tst.o-c_compat_y_tst.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_tst.o-c_compat_y_tst.o execute "-m64","-m64"

Last 10 lines of 'tests.IGNORE PASS':
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo46
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo47
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo49
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo51
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo55
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo57
	gcc.dg/visibility-d.c scan-hidden private_extern[ \t_]*_?foo59
	gcc.dg/vla-4.c (test for excess errors)
	gcc.target/i386/pr23376.c (test for excess errors)
	gcc.target/x86_64/abi/test_struct_returning.c execution,  -O0

Last 10 lines of 'tests.IGNORE XPASS':
	gcc.dg/c99-const-expr-3.c bogus null pointer constant (test for bogus messages, line 35)
	gcc.dg/c99-const-expr-3.c bogus null pointer constant (test for bogus messages, line 42)
	gcc.dg/c99-const-expr-3.c bogus null pointer constant (test for bogus messages, line 43)
	gcc.dg/c99-const-expr-3.c bogus null pointer constant (test for bogus messages, line 44)
	gcc.dg/overflow-warn-3.c constant (test for bogus messages, line 42)
	gcc.dg/overflow-warn-4.c constant (test for bogus messages, line 42)
	gcc.dg/pr13519-1.c bogus error (test for bogus messages, line 17)
	gcc.dg/uninit-6.c uninitialized variable warning (test for bogus messages, line 42)
	gcc.dg/wtr-union-init-3.c initialization of unions (test for bogus messages, line 44)
	gcc.dg/wtr-union-init-3.c initialization of unions (test for bogus messages, line 47)

Last 10 lines of 'tests.IGNORE UNRESOLVED':
	gcc.target/i386/abi-1.c: error executing dg-final: couldn't open "abi-1.s": no such file or directory
	gcc.target/i386/pr22432.c: error executing dg-final: couldn't open "pr22432.s": no such file or directory
	gcc.target/i386/pr28946.c: error executing dg-final: couldn't open "pr28946.s": no such file or directory
	gcc.target/i386/vectorize1.c: error executing dg-final: no files matched glob pattern "vectorize1.c.[0-9][0-9][0-9][ti].vect"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_alt.o-c_compat_y_tst.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_alt.o-c_compat_y_tst.o link "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_tst.o-c_compat_y_alt.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_tst.o-c_compat_y_alt.o link "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_tst.o-c_compat_y_tst.o execute "-m32","-m32"
	tmpdir-gcc.dg-struct-layout-1/t024 c_compat_x_tst.o-c_compat_y_tst.o link "-m32","-m32"

Last 10 lines of 'stdio':
	# of expected passes		11452
	# of unexpected failures	3777
	# of unexpected successes	41
	# of expected failures		22
	# of unresolved testcases	33
	# of untested testcases		39
	# of unsupported tests		319
	/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-qa_tests/llvm.install/bin/clang++  version 2.9 (trunk 115251)
	
	make: *** [check-g++] Error 1

Last 10 lines of 'dg.sum':
	
	# of expected passes		11452
	# of unexpected failures	3777
	# of unexpected successes	41
	# of expected failures		22
	# of unresolved testcases	33
	# of untested testcases		39
	# of unsupported tests		319
	/Users/buildslave/zorg/buildbot/smooshlab/slave/build.clang-x86_64-darwin10-qa_tests/llvm.install/bin/clang++  version 2.9 (trunk 115251)
	

Last 10 lines of 'warnings':
	FAIL: g++.dg/warn/miss-format-1.C scanf attribute warning (test for warnings, line 24)
	FAIL: g++.dg/warn/miss-format-1.C printf attribute warning 2 (test for warnings, line 40)
	FAIL: g++.dg/warn/miss-format-3.C initialization warning (test for warnings, line 18)
	FAIL: g++.dg/warn/miss-format-3.C initialization warning (test for warnings, line 23)
	FAIL: g++.dg/warn/miss-format-4.C assignment warning (test for warnings, line 24)
	FAIL: g++.dg/warn/miss-format-4.C assignment warning (test for warnings, line 29)
	FAIL: g++.dg/warn/miss-format-5.C return type warning (test for warnings, line 20)
	FAIL: g++.dg/warn/miss-format-5.C return type warning (test for warnings, line 38)
	FAIL: g++.dg/warn/miss-format-6.C parameter passing warning (test for warnings, line 23)
	FAIL: g++.dg/warn/miss-format-6.C parameter passing warning (test for warnings, line 28)

Last 10 lines of 'tests.FAIL':
	g++.dg/opt/mmx2.C (test for excess errors)

Last 10 lines of 'tests.XFAIL':
	g++.old-deja/g++.law/missed-error1.C  (test for errors, line 19)
	g++.old-deja/g++.law/missed-error1.C  (test for errors, line 20)
	g++.old-deja/g++.oliva/expr1.C  (test for bogus messages, line 12)
	g++.old-deja/g++.other/access2.C  (test for errors, line 7)
	g++.old-deja/g++.other/access2.C  (test for errors, line 9)
	g++.old-deja/g++.other/overload11.C  (test for bogus messages, line 56)
	g++.old-deja/g++.other/overload11.C  (test for warnings, line 84)
	g++.old-deja/g++.pt/explicit76.C  (test for bogus messages, line 10)
	g++.old-deja/g++.pt/overload7.C  (test for bogus messages, line 14)
	g++.old-deja/g++.pt/overload7.C  (test for bogus messages, line 19)

Last 10 lines of 'tests.IGNORE FAIL':
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o-cp_compat_y_alt.o execute "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o-cp_compat_y_alt.o execute "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o-cp_compat_y_tst.o execute "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o-cp_compat_y_tst.o execute "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_alt.o-cp_compat_y_tst.o execute "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_alt.o-cp_compat_y_tst.o execute "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o-cp_compat_y_alt.o execute "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o-cp_compat_y_alt.o execute "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o-cp_compat_y_tst.o execute "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o-cp_compat_y_tst.o execute "-m64","-m64"

Last 10 lines of 'tests.IGNORE PASS':
	tmpdir-g++.dg-struct-layout-1/t025 cp_compat_x_tst.o compile, "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t025 cp_compat_x_tst.o compile, "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t026 cp_compat_x_tst.o compile, "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t026 cp_compat_x_tst.o compile, "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t027 cp_compat_x_tst.o compile, "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t027 cp_compat_x_tst.o compile, "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o compile, "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t029 cp_compat_x_tst.o compile, "-m64","-m64"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o compile, "-m32","-m32"
	tmpdir-g++.dg-struct-layout-1/t030 cp_compat_x_tst.o compile, "-m64","-m64"

Last 10 lines of 'tests.IGNORE XPASS':
	g++.old-deja/g++.ns/template13.C  (test for errors, line 13)
	g++.old-deja/g++.oliva/linkage1.C  (test for bogus messages, line )
	g++.old-deja/g++.oliva/ns2.C  (test for bogus messages, line 13)
	g++.old-deja/g++.other/crash32.C  (test for bogus messages, line 10)
	g++.old-deja/g++.other/crash32.C  (test for bogus messages, line 12)
	g++.old-deja/g++.other/overload11.C  (test for bogus messages, line 57)
	g++.old-deja/g++.other/overload11.C  (test for bogus messages, line 58)
	g++.old-deja/g++.other/overload11.C  (test for bogus messages, line 59)
	g++.old-deja/g++.pt/spec24.C  (test for errors, line 5)
	g++.old-deja/g++.robertl/eb133b.C  (test for errors, line 6)

Last 10 lines of 'tests.IGNORE UNRESOLVED':
	g++.dg/tree-ssa/pr18178.C: error executing dg-final: no files matched glob pattern "pr18178.C.[0-9][0-9][0-9][ti].vrp1"
	g++.dg/tree-ssa/pr19807.C: error executing dg-final: no files matched glob pattern "pr19807.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/pr23948.C: error executing dg-final: no files matched glob pattern "pr23948.C.[0-9][0-9][0-9][ti].recip"
	g++.dg/tree-ssa/pr26406.C: error executing dg-final: no files matched glob pattern "pr26406.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/pr27090.C: error executing dg-final: no files matched glob pattern "pr27090.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/ssa-cast-1.C: error executing dg-final: no files matched glob pattern "ssa-cast-1.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/ssa-sra-1.C: error executing dg-final: no files matched glob pattern "ssa-sra-1.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/ssa-sra-2.C: error executing dg-final: no files matched glob pattern "ssa-sra-2.C.[0-9][0-9][0-9][ti].optimized"
	g++.dg/tree-ssa/tmmti-2.C: error executing dg-final: no files matched glob pattern "tmmti-2.C.[0-9][0-9][0-9][ti].optimized"
	g++.old-deja/g++.ext/attrib5.C




More information about the llvm-testresults mailing list