summaryrefslogtreecommitdiffhomepage
path: root/tests/test_02_linker
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_02_linker')
-rw-r--r--tests/test_02_linker/linker_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_02_linker/linker_test.cc b/tests/test_02_linker/linker_test.cc
index a6b0387..e164717 100644
--- a/tests/test_02_linker/linker_test.cc
+++ b/tests/test_02_linker/linker_test.cc
@@ -23,6 +23,7 @@ TEST(LinkerTest, BasicLinkTest2) {
/// link
TEST(LinkerTest, BasicLinkTest3) {
- auto expr = std::system("ld64 -amd64 sample/sample.cc.pp.obj -start __NECTI_main -output main.exec");
+ auto expr =
+ std::system("ld64 -amd64 sample/sample.cc.pp.obj -start __NECTI_main -output main.exec");
EXPECT_TRUE(expr == 0) << "Linker did not link the easy object.";
}