瀏覽代碼

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