Make separate helper scripts for testing compiler and runtime

This commit is contained in:
Max Brunsfeld 2014-07-17 19:14:17 -07:00
parent 779bf0d745
commit 02904085c2
8 changed files with 60 additions and 24 deletions

View file

@ -1,11 +1,5 @@
#include "runtime/runtime_spec_helper.h"
int main(int argc, char *argv[]) {
const char *args[] = {
"",
"--no-color",
"--only="
""
};
return bandit::run(4, const_cast<char **>(args));
return bandit::run(argc, argv);
}