diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-30 22:37:13 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-30 22:37:13 -0700 |
commit | 5495f8c61797173b6e9e0b505c9a426399d2bfb1 (patch) | |
tree | a41a24912bfcc852e1b952dad5ae6ec554bd9cbb | |
parent | 3f359b080ea157ce0dd8ff2a68b9799bf01be37e (diff) |
test runner message about non-main parts
-rwxr-xr-x | tests/runner.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 27142eaf..eb93b7e4 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -17,6 +17,16 @@ from subprocess import Popen, PIPE, STDOUT import os, unittest, tempfile, shutil, time, inspect, sys, math, glob, tempfile, re, difflib, webbrowser, hashlib, threading, platform, BaseHTTPServer, multiprocessing +if len(sys.argv) == 1: + print ''' +Running the main part of the test suite. Don't forget to run the other parts! + + sanity - tests for first run, etc., modifies ~/.emscripten + benchmark - run before and after each set of changes before pushing to master, verify no regressions + browser - TODO +''' + time.sleep(2) + # Setup __rootpath__ = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |