summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/tests/tokenizecmd_test.cpp
diff options
context:
space:
mode:
author Branimir Karadžić <branimirkaradzic@gmail.com>2017-02-05 13:56:35 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2017-02-05 13:56:35 +0100
commit1607745432f50099711d7aee355111111e66ff51 (patch)
treec4eaec8008f6e0283ca652cdffb55a34eca9b9bb /3rdparty/bx/tests/tokenizecmd_test.cpp
parent193e8c8a89a4be5c63909cdbbcca4d9d6f8fee02 (diff)
Update BGFX and BX (nw)
Diffstat (limited to '3rdparty/bx/tests/tokenizecmd_test.cpp')
-rw-r--r--3rdparty/bx/tests/tokenizecmd_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/3rdparty/bx/tests/tokenizecmd_test.cpp b/3rdparty/bx/tests/tokenizecmd_test.cpp
index 12502502a1a..7d35ac7484c 100644
--- a/3rdparty/bx/tests/tokenizecmd_test.cpp
+++ b/3rdparty/bx/tests/tokenizecmd_test.cpp
@@ -4,7 +4,6 @@
*/
#include "test.h"
-#include <bx/tokenizecmd.h>
#include <bx/commandline.h>
#include <string.h>
@@ -14,6 +13,8 @@ TEST(commandLine)
{
"-s",
"--long",
+ "--platform",
+ "x",
};
bx::CommandLine cmdLine(BX_COUNTOF(args), args);
@@ -23,6 +24,7 @@ TEST(commandLine)
// non-existing argument
CHECK(!cmdLine.hasArg('x') );
+ CHECK(!cmdLine.hasArg("preprocess") );
}
TEST(tokenizeCommandLine)