Add Nios II arch flags and compatibility tests
[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 global link_output
10 global ld
11
12 set test_name "NIOS2 Mixed R1 and R2 objects"
13 set test mixed1
14
15 if ![ld_assemble $as "-march=r1 $srcdir/$subdir/${test}a.s" tmpdir/${test}a.o] {
16 unresolved "Build mixed1a.o"
17 return
18 }
19
20 if ![ld_assemble $as "-march=r2 $srcdir/$subdir/${test}b.s" tmpdir/${test}b.o] {
21 unresolved "Build mixed1b.o"
22 return
23 }
24
25 if { ![ld_simple_link $ld tmpdir/$test "tmpdir/${test}a.o tmpdir/${test}b.o"] } {
26 if [string match "*architecture * is incompatible*" $link_output] {
27 pass "$test_name"
28 } {
29 fail "$test_name"
30 }
31 }
This page took 0.032971 seconds and 5 git commands to generate.