Remove perror from ld_assemble, ld_compile and ld_nm
[deliverable/binutils-gdb.git] / ld / testsuite / ld-nios2 / nios2.exp
1 if { ! [istarget nios2-*-*] } {
2 return
3 }
4
5 foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.d]] {
6 run_dump_test [file rootname $test]
7 }
8
9 set test_name "NIOS2 Mixed R1 and R2 objects"
10 set test mixed1
11
12 if ![ld_assemble $as "-march=r1 $srcdir/$subdir/${test}a.s" tmpdir/${test}a.o] {
13 fail "Build mixed1a.o"
14 return
15 }
16
17 if ![ld_assemble $as "-march=r2 $srcdir/$subdir/${test}b.s" tmpdir/${test}b.o] {
18 fail "Build mixed1b.o"
19 return
20 }
21
22 if { ![ld_link $ld tmpdir/$test "tmpdir/${test}a.o tmpdir/${test}b.o"] } {
23 if [string match "*architecture * is incompatible*" $link_output] {
24 pass "$test_name"
25 } {
26 fail "$test_name"
27 }
28 }
This page took 0.030837 seconds and 4 git commands to generate.