Skip to content

Commit b3aeba6

Browse files
committedFeb 21, 2015
Unit tests must be done at integration process.
* Remove --enable-unittests and --disable-unittests and add --do-unittests function * --do-unittests function will exit 0 on success. * minetest and minetestserver binaries are launched with --do-unittests in travis build.
1 parent 38e6280 commit b3aeba6

File tree

4 files changed

+21
-28
lines changed

4 files changed

+21
-28
lines changed
 

‎src/CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,10 @@ add_subdirectory(jthread)
355355
add_subdirectory(script)
356356
add_subdirectory(util)
357357

358+
set (unittests_SRCS
359+
test.cpp
360+
)
361+
358362
set(common_SRCS
359363
ban.cpp
360364
base64.cpp
@@ -422,7 +426,6 @@ set(common_SRCS
422426
sound.cpp
423427
staticobject.cpp
424428
subgame.cpp
425-
test.cpp
426429
tool.cpp
427430
treegen.cpp
428431
version.cpp
@@ -435,6 +438,7 @@ set(common_SRCS
435438
${JTHREAD_SRCS}
436439
${common_SCRIPT_SRCS}
437440
${UTIL_SRCS}
441+
${unittests_SRCS}
438442
)
439443

440444
# This gives us the icon and file version information

‎src/main.cpp

+4-19
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1717
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1818
*/
1919

20-
#ifdef NDEBUG
21-
/*#ifdef _WIN32
22-
#pragma message ("Disabling unit tests")
23-
#else
24-
#warning "Disabling unit tests"
25-
#endif*/
26-
// Disable unit tests
27-
#define ENABLE_TESTS 0
28-
#else
29-
// Enable unit tests
30-
#define ENABLE_TESTS 1
31-
#endif
32-
3320
#ifdef _MSC_VER
3421
#ifndef SERVER // Dedicated server isn't linked with Irrlicht
3522
#pragma comment(lib, "Irrlicht.lib")
@@ -279,9 +266,9 @@ int main(int argc, char *argv[])
279266

280267
#ifndef __ANDROID__
281268
// Run unit tests
282-
if ((ENABLE_TESTS && cmd_args.getFlag("disable-unittests") == false)
283-
|| cmd_args.getFlag("enable-unittests") == true) {
269+
if (cmd_args.getFlag("do-unittests")) {
284270
run_tests();
271+
return 0;
285272
}
286273
#endif
287274

@@ -352,10 +339,8 @@ static void set_allowed_options(OptionList *allowed_options)
352339
_("Load configuration from specified file"))));
353340
allowed_options->insert(std::make_pair("port", ValueSpec(VALUETYPE_STRING,
354341
_("Set network port (UDP)"))));
355-
allowed_options->insert(std::make_pair("disable-unittests", ValueSpec(VALUETYPE_FLAG,
356-
_("Disable unit tests"))));
357-
allowed_options->insert(std::make_pair("enable-unittests", ValueSpec(VALUETYPE_FLAG,
358-
_("Enable unit tests"))));
342+
allowed_options->insert(std::make_pair("do-unittests", ValueSpec(VALUETYPE_FLAG,
Has conversations. Original line has conversations.
343+
_("Run the unit tests and exit"))));
359344
allowed_options->insert(std::make_pair("map-dir", ValueSpec(VALUETYPE_STRING,
360345
_("Same as --world (deprecated)"))));
361346
allowed_options->insert(std::make_pair("world", ValueSpec(VALUETYPE_STRING,

‎src/test.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -2132,23 +2132,23 @@ void run_tests()
21322132
TEST(TestCollision);
21332133
if(INTERNET_SIMULATOR == false){
21342134
TEST(TestSocket);
2135-
dout_con<<"=== BEGIN RUNNING UNIT TESTS FOR CONNECTION ==="<<std::endl;
2135+
dout_con << "=== BEGIN RUNNING UNIT TESTS FOR CONNECTION ===" << std::endl;
21362136
TEST(TestConnection);
2137-
dout_con<<"=== END RUNNING UNIT TESTS FOR CONNECTION ==="<<std::endl;
2137+
dout_con << "=== END RUNNING UNIT TESTS FOR CONNECTION ===" << std::endl;
21382138
}
21392139

21402140
log_set_lev_silence(LMT_ERROR, false);
21412141

21422142
delete idef;
21432143
delete ndef;
21442144

2145-
if(tests_failed == 0){
2146-
infostream<<"run_tests(): "<<tests_failed<<" / "<<tests_run<<" tests failed."<<std::endl;
2147-
infostream<<"run_tests() passed."<<std::endl;
2145+
if(tests_failed == 0) {
2146+
actionstream << "run_tests(): " << tests_failed << " / " << tests_run << " tests failed." << std::endl;
2147+
actionstream << "run_tests() passed." << std::endl;
21482148
return;
21492149
} else {
2150-
errorstream<<"run_tests(): "<<tests_failed<<" / "<<tests_run<<" tests failed."<<std::endl;
2151-
errorstream<<"run_tests() aborting."<<std::endl;
2150+
errorstream << "run_tests(): " << tests_failed << " / " << tests_run << " tests failed." << std::endl;
2151+
errorstream << "run_tests() aborting." << std::endl;
21522152
abort();
21532153
}
21542154
}

‎util/travis/script.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
if [ $WINDOWS = "no" ]; then
44
mkdir -p travisbuild
55
cd travisbuild
6-
cmake -DENABLE_GETTEXT=1 -DENABLE_LEVELDB=1 -DENABLE_REDIS=1 ..
6+
cmake -DENABLE_GETTEXT=1 -DENABLE_LEVELDB=1 -DENABLE_REDIS=1 -DCMAKE_BUILD_TYPE=Debug ..
77
make -j2
8+
echo "Running unit tests for minetest"
9+
../bin/minetest --do-unittests
10+
echo "Running unit tests for minetestserver"
11+
../bin/minetestserver --do-unittests
812
else
913
[ $CC = "clang" ] && exit 1 # Not supposed to happen
1014
# We need to have our build directory outside of the minetest directory because

0 commit comments

Comments
 (0)
Please sign in to comment.