소스 검색

test starting all examples

Falko Schindler 2 년 전
부모
커밋
b3bdbf1082
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      test_startup.sh

+ 4 - 1
test_startup.sh

@@ -30,5 +30,8 @@ check() {
 error=0
 check main.py || error=1
 check examples.py || error=1
-check examples/slideshow/main.py || error=1
+for path in examples/*
+do
+    check $path/main.py || error=1
+done
 test $error -eq 0