#ifdef TEST #else #include using namespace boost::unit_test; #endif #include #include #include #include using namespace std; int parseScript(const char* path) { ifstream script(path, ios::in); if (!script.is_open()) { perror(path); return ENOENT; } else { string line; while(getline(script, line, '\n')) { // cout << line <