summaryrefslogtreecommitdiffhomepage
path: root/test-cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test-cpp.cpp')
-rw-r--r--test-cpp.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/test-cpp.cpp b/test-cpp.cpp
index d08f9b0..2a67b38 100644
--- a/test-cpp.cpp
+++ b/test-cpp.cpp
@@ -24,7 +24,7 @@ class CppTest: public ::testing::Test
{
protected:
CppTest() {
- //debug = true;
+ debug = true;
}
~CppTest() {
}
@@ -40,8 +40,13 @@ TEST_F(CppTest, preprocessing_tokenize) {
auto tokens = cpp.tokens_from_pptokens(pp_tokens);
ASSERT_EQ(tokens.size(), 9);
+#if 0
+ for (auto &i: tokens) {
+ std::cout << i.type << ": " << i.value << std::endl;
+ }
+#endif
- //auto result = cpp.analysis(tokens);
+ auto result = cpp.analysis(tokens);
}
#endif