Skip to content

Commit aa4c416

Browse files
author
Ryan Jacobs
committed
travis debug
1 parent 7280c87 commit aa4c416

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ for f in "${comp[@]}"; do
192192
[[ -n "$f" ]] && final_comp+=("$f")
193193
done
194194

195-
#i=0
196-
#for c in "${final_comp[@]}"; do
197-
# let i++
198-
# echo $i "$c"
199-
#done
195+
i=0
196+
for c in "${final_comp[@]}"; do
197+
let i++
198+
echo $i "$c"
199+
done
200200

201201
# compile and run
202202
if "$CC" -O2 -o "$binname" "${final_comp[@]}" "${includes[@]}"; then

tests/test.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
source "./test_helpers.sh"
55

66
# Run tests
7-
source ./argument_and_link_test/test.sh
8-
source ./complex_arguments/test.sh
9-
source ./stdin/test.sh
10-
source ./C++/test.sh
11-
source ./shell/test.sh
7+
#source ./argument_and_link_test/test.sh
8+
#source ./complex_arguments/test.sh
9+
#source ./stdin/test.sh
10+
#source ./C++/test.sh
11+
#source ./shell/test.sh
1212
source ./examples/test.sh
1313

1414
quit

0 commit comments

Comments
 (0)