Skip to content

Commit 7b11860

Browse files
committed
Merge pull request #355 from sej7278/master
Added some extra checks to Travis-CI
2 parents 977e43f + 412e1c4 commit 7b11860

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
99
- Tweak: Looks for submenu items first when parsing BOARDS_TXT (Issue #347) (https://github.com/sej7278)
1010
- Tweak: Various spelling/grammar/typo fixes (https://github.com/dcousens)
1111
- Tweak: Clarified some 1.5+ issues in docs (Issue #352) (https://github.com/sej7278)
12+
- Tweak: Added some more Continuous Integration tests (https://github.com/sej7278)
1213

1314
### 1.5 (2015-04-07)
1415
- New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e)

tests/script/runtests.sh

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ failures=()
77
# These examples cannot be tested easily at the moment as they require
88
# alternate cores. The MakefileExample doesn't actually contain any source code
99
# to compile.
10-
NON_TESTABLE_EXAMPLES=(ATtinyBlink MakefileExample TinySoftWareSerial BlinkTeensy BlinkNetworkRPi)
10+
NON_TESTABLE_EXAMPLES=(ATtinyBlink MakefileExample TinySoftWareSerial BlinkTeensy BlinkNetworkRPi BlinkInAVRC)
1111

1212
for dir in $TESTS_DIR/*/
1313
do
@@ -34,6 +34,25 @@ do
3434
failures+=("$example")
3535
echo "Example $example failed"
3636
fi
37+
38+
make_output=`make disasm TEST=1`
39+
if [[ $? -ne 0 ]]; then
40+
failures+=("$example disasm")
41+
echo "Example $example disasm failed"
42+
fi
43+
44+
make_output=`make generate_assembly TEST=1`
45+
if [[ $? -ne 0 ]]; then
46+
failures+=("$example generate_assembly")
47+
echo "Example $example generate_assembly failed"
48+
fi
49+
50+
make_output=`make symbol_sizes TEST=1`
51+
if [[ $? -ne 0 ]]; then
52+
failures+=("$example symbol_sizes")
53+
echo "Example $example symbol_sizes failed"
54+
fi
55+
3756
popd
3857
done
3958

0 commit comments

Comments
 (0)