Last change
on this file since 932 was
520,
checked in by bouyer, 11 years ago
|
Re-add the tests; reverting previous which was done at the wrong level (sorry)
|
-
Property svn:executable set to
*
|
File size:
738 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | check_output() |
---|
4 | { |
---|
5 | egrep "^end 0x0000DEAE$" run.out > /dev/null |
---|
6 | if [ $? -ne 0 ]; then |
---|
7 | echo "couldn't find string 1 in output - mtty not working ?" >> run.out |
---|
8 | return 1 |
---|
9 | fi |
---|
10 | egrep ^status run.out |
---|
11 | return 0; |
---|
12 | } |
---|
13 | echo |
---|
14 | for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70; do |
---|
15 | echo -n " DELAY=$i: " |
---|
16 | make INTERRUPT_DELAY=$i --quiet || exit 1 |
---|
17 | ../platform/simulation.x > run.out 2>&1 |
---|
18 | if [ $? -eq 0 ]; then |
---|
19 | if check_output; then |
---|
20 | echo "test passsed"; |
---|
21 | make --quiet clean |
---|
22 | else |
---|
23 | echo "test FAILED" |
---|
24 | exit 1 |
---|
25 | fi |
---|
26 | else |
---|
27 | echo "test FAILED" |
---|
28 | exit 1 |
---|
29 | fi |
---|
30 | done |
---|
31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.