Upload new files

This commit is contained in:
blahpy
2020-09-09 16:54:16 +12:00
parent 2075dd66b6
commit eb886d0c45
6 changed files with 57 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ add_executable(goalc-test
test_emitter_loads_and_store.cpp
test_emitter_xmm32.cpp
test_emitter_integer_math.cpp
)
"test_common_util.cpp")
IF (WIN32)
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
+11
View File
@@ -0,0 +1,11 @@
#include "common/util/FileUtil.h"
#include <iostream>
#include "gtest/gtest.h"
TEST(test, test) {
std::string test[] = {"cabbage", "banana", "apple"};
std::cout << FileUtil::get_file_path(test) << std::endl;
EXPECT_TRUE(true);
}