Skip to content

Commit 2955b7d

Browse files
committed
Fix travis script
1 parent 270025e commit 2955b7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ script:
9292
- ls -l /usr/local/lib/
9393
- ls -l /usr/lib/
9494
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd ../src/; cppcheck --error-exitcode=1 .; cd ../build; fi
95-
- if [ "$PERFORMANCE" = "select" ]; then cd examples; ./benchmark_select 8080 $(nproc) & ; fi;
95+
- if [ "$PERFORMANCE" = "select" ]; then cd examples; ./benchmark_select 8080 $(nproc) & fi;
9696
- if [ "$PERFORMANCE" = "select" ]; then ab -n 10000000 -c 1000 localhost:8080/plaintext; fi;
97-
- if [ "$PERFORMANCE" = "thread" ]; then cd examples; ./benchmark_threads 8080 & ; fi;
97+
- if [ "$PERFORMANCE" = "thread" ]; then cd examples; ./benchmark_threads 8080 & fi;
9898
- if [ "$PERFORMANCE" = "thread" ]; then ab -n 10000000 -c 1000 localhost:8080/plaintext; fi;
9999
after_success:
100100
- if [ "$DEBUG" = "debug" ] && [ "$COVERAGE" = "coverage" ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then bash <(curl -s https://codecov.io/bash); fi

0 commit comments

Comments
 (0)