summaryrefslogtreecommitdiffhomepage
path: root/test/test_01_codegen
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_01_codegen')
-rw-r--r--test/test_01_codegen/codegen.test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_01_codegen/codegen.test.cc b/test/test_01_codegen/codegen.test.cc
index 9868c6f..b3428a8 100644
--- a/test/test_01_codegen/codegen.test.cc
+++ b/test/test_01_codegen/codegen.test.cc
@@ -11,19 +11,19 @@
TEST(CodegenTest, BasicCodegenTestGrep) {
// Compile C++ source to assembly
auto compile_result =
- std::system("pef-amd64-cxxdrv ../test_samples/sample.ncpp > /dev/null 2>&1");
+ std::system("pef-amd64-cxxdrv ../test_samples/sample.nc > /dev/null 2>&1");
EXPECT_TRUE(compile_result == 0) << "C++ compiler driver failed to compile sample.cc";
// Grep for expected entry point symbol in generated assembly
- auto grep_main = std::system("grep -q '__NECTAR_main' ../test_samples/sample.ncpp.masm");
+ auto grep_main = std::system("grep -q '__NECTAR_main' ../test_samples/sample.nc.masm");
EXPECT_TRUE(grep_main == 0) << "Generated assembly missing expected entry point __NECTAR_main";
// Grep for return instruction
- auto grep_ret = std::system("grep -q 'ret' ../test_samples/sample.ncpp.masm");
+ auto grep_ret = std::system("grep -q 'ret' ../test_samples/sample.nc.masm");
EXPECT_TRUE(grep_ret == 0) << "Generated assembly missing return instruction";
// Grep for 64-bit mode directive
- auto grep_bits64 = std::system("grep -q '%bits 64' ../test_samples/sample.ncpp.masm");
+ auto grep_bits64 = std::system("grep -q '%bits 64' ../test_samples/sample.nc.masm");
EXPECT_TRUE(grep_bits64 == 0) << "Generated assembly missing 64-bit mode directive";
}