Skip to content
Snippets Groups Projects
Commit 4184646e authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

CTest problem understood. No coded solution, but a note in

CTEST_CUSTOM_PRE_TEST.
parent c0111f41
No related branches found
No related tags found
No related merge requests found
Release 2.3.5a of
- Revised CMake machinery to ensure that tests use freshly compiled library versions
- CMake machinery now uses variables like ${library_name}_LIBRARY
- Renamed libfrida -> libfridacore, libtrivia -> libfridatrivia
- Fully relying on implicit library dependencies (frida -> libfridacore -> libfridatrivia -> GSL)
- Ensure termination of functional tests by including the one-line script "exit(1)"
Release 2.3.4d of 28jan17:
......
set(CTEST_CUSTOM_PRE_TEST "echo To run ctest before make install, unset LD_LIBRARY_PATH")
set(CTEST_CUSTOM_POST_TEST "echo For details, see the log files in Testing/Temporary/")
......@@ -125,10 +125,8 @@ void CFrida::execute_cmd(const string cmdline)
CFrida::CFrida()
{
cout << "DEBUG--00\n";
int line = 0;
try {
cout << "DEBUG--01\n";
// Initializations:
NReadln::initialize(); // command-line dialog (readline and history)
line = 1;
......@@ -138,7 +136,6 @@ CFrida::CFrida()
line = 3;
fbase_initialize();
line = 4;
cout << "DEBUG--05\n";
fassign_initialize();
line = 5;
fstring_initialize();
......@@ -151,7 +148,6 @@ CFrida::CFrida()
cout << "BUG: atexit registration failed\n";
exit(EXIT_FAILURE);
}
cout << "DEBUG--09\n";
// time monitor:
line = 9;
clock_start = clock();
......@@ -207,7 +203,7 @@ void CFrida::execute_file(const string fnam)
{
int lineno = 0;
try {
cout << "X executing " << fnam << "\n";
cout << "executing " << fnam << "\n";
std::ifstream F(fnam);
while (true) {
string cmdline = NMacro::readln("", &F, &lineno);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment