mirror of
https://github.com/open-goal/jak-project
synced 2026-07-31 08:16:02 -04:00
Upload new files
This commit is contained in:
+1
-1
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user