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 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 - 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)" - Ensure termination of functional tests by including the one-line script "exit(1)"
Release 2.3.4d of 28jan17: 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/") 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) ...@@ -125,10 +125,8 @@ void CFrida::execute_cmd(const string cmdline)
CFrida::CFrida() CFrida::CFrida()
{ {
cout << "DEBUG--00\n";
int line = 0; int line = 0;
try { try {
cout << "DEBUG--01\n";
// Initializations: // Initializations:
NReadln::initialize(); // command-line dialog (readline and history) NReadln::initialize(); // command-line dialog (readline and history)
line = 1; line = 1;
...@@ -138,7 +136,6 @@ CFrida::CFrida() ...@@ -138,7 +136,6 @@ CFrida::CFrida()
line = 3; line = 3;
fbase_initialize(); fbase_initialize();
line = 4; line = 4;
cout << "DEBUG--05\n";
fassign_initialize(); fassign_initialize();
line = 5; line = 5;
fstring_initialize(); fstring_initialize();
...@@ -151,7 +148,6 @@ CFrida::CFrida() ...@@ -151,7 +148,6 @@ CFrida::CFrida()
cout << "BUG: atexit registration failed\n"; cout << "BUG: atexit registration failed\n";
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
cout << "DEBUG--09\n";
// time monitor: // time monitor:
line = 9; line = 9;
clock_start = clock(); clock_start = clock();
...@@ -207,7 +203,7 @@ void CFrida::execute_file(const string fnam) ...@@ -207,7 +203,7 @@ void CFrida::execute_file(const string fnam)
{ {
int lineno = 0; int lineno = 0;
try { try {
cout << "X executing " << fnam << "\n"; cout << "executing " << fnam << "\n";
std::ifstream F(fnam); std::ifstream F(fnam);
while (true) { while (true) {
string cmdline = NMacro::readln("", &F, &lineno); 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