X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ftests_filesystem%2Ftest_filename.cpp;h=c91c032040563061ab02b025d1913ae7f220be77;hb=5a8e13e7a44ed98d9683bc6cd3bb374e9d3b0756;hp=54bba456d58d952109f11095c74695c8cc7f7d5c;hpb=51b587223136de70cd5a9f1cfbf2bf80b4e70ba0;p=feisty_meow.git diff --git a/nucleus/library/tests_filesystem/test_filename.cpp b/nucleus/library/tests_filesystem/test_filename.cpp index 54bba456..c91c0320 100644 --- a/nucleus/library/tests_filesystem/test_filename.cpp +++ b/nucleus/library/tests_filesystem/test_filename.cpp @@ -224,7 +224,7 @@ int test_filename::execute() { // eighth test group is only for windows side. //hmmm: might be nice to get the build machine launching this on a windows vm. - astring GROUP = "eighth: cygwin and msys paths"; + astring GROUP = "eighth: cygwin and msys paths "; filename test1("/cygdrive/q/marbles"); ASSERT_EQUAL(test1, astring("q:\\marbles"), GROUP + "test 1 failed"); filename test2("/cygdrive/r"); @@ -253,13 +253,13 @@ int test_filename::execute() filename test14("/r/"); ASSERT_EQUAL(test14, astring("r:\\"), GROUP + "test 14 failed"); filename test15("/r"); - ASSERT_EQUAL(test15, astring("r:"), GROUP + "test 15 failed"); + ASSERT_EQUAL(test15, astring("r:\\"), GROUP + "test 15 failed"); filename test16("/"); ASSERT_EQUAL(test16, astring("\\"), GROUP + "test 16 failed"); filename test17("r/"); ASSERT_EQUAL(test17, astring("r\\"), GROUP + "test 17 failed"); filename test18("/kr/soop"); - ASSERT_INEQUAL(test18, astring("\\kr\\soop"), GROUP + "test 18 failed"); + ASSERT_EQUAL(test18, astring("\\kr\\soop"), GROUP + "test 18 failed"); } #endif