Separate spec helpers files for compiler and runtime specs

This commit is contained in:
Max Brunsfeld 2014-03-08 15:26:27 -08:00
parent b167ee84fa
commit 142671c177
24 changed files with 99 additions and 71 deletions

View file

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