Skip to content
Snippets Groups Projects
Commit 8e48b378 authored by Nicolas Pfeiffer's avatar Nicolas Pfeiffer
Browse files

fix benchmarks for emper

parent 3235d8cf
Branches
Tags
No related merge requests found
...@@ -105,6 +105,7 @@ int main(int argc, const char * argv[]) ...@@ -105,6 +105,7 @@ int main(int argc, const char * argv[])
} }
init(); init();
int result;
fibril_rt_init(0); fibril_rt_init(0);
int nprocs = fibril_rt_nprocs(); int nprocs = fibril_rt_nprocs();
...@@ -117,6 +118,7 @@ int main(int argc, const char * argv[]) ...@@ -117,6 +118,7 @@ int main(int argc, const char * argv[])
test(); test();
#endif #endif
result = verify();
fibril_rt_exit(); fibril_rt_exit();
#ifdef BENCHMARK #ifdef BENCHMARK
...@@ -130,7 +132,8 @@ int main(int argc, const char * argv[]) ...@@ -130,7 +132,8 @@ int main(int argc, const char * argv[])
printf("===========================================\n"); printf("===========================================\n");
#endif #endif
return verify(); //return verify();
return result;
} }
#endif /* end of include guard: TEST_H */ #endif /* end of include guard: TEST_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment