diff options
Diffstat (limited to 'test-ymake.cpp')
-rw-r--r-- | test-ymake.cpp | 72 |
1 files changed, 71 insertions, 1 deletions
diff --git a/test-ymake.cpp b/test-ymake.cpp index b5c030d..820befe 100644 --- a/test-ymake.cpp +++ b/test-ymake.cpp @@ -935,8 +935,78 @@ int main(int argc, char* argv[]) EXPECT_TRUE(!fs::exists("runmain")); } +TEST_F(ymakeTest, use_one_dynamic_lib_from_subdir) +{ + create_file("YMakefile", R"( +<ymake> + <build> + <name>runmain</name> + <source>runmain.cpp</source> + <linklib>subdir1/libhello.so</linklib> + </build> +</ymake> +)"); + + create_file("runmain.cpp", R"(#include "subdir1/hello.h" +int main(int argc, char* argv[]) +{ + hello(); + return 0; +})"); + + fs::create_directory("subdir1"); + + create_file("subdir1/YMakefile", R"( +<ymake> + <build> + <name>libhello.so.1.0.0</name> + <source>hello.cpp</source> + </build> +</ymake> +)"); + + create_file("subdir1/hello.cpp", R"(#include "hello.h" +#include <iostream> +int hello() +{ + std::cout << "Hello." << std::endl; + return 0; +})"); + + create_file("subdir1/hello.h", R"(#pragma once +__attribute__((visibility("default"))) int hello(); +)"); + + std::vector<std::string> output; + int result = run_command("../ymake", output); + EXPECT_EQ(result, 0); + ASSERT_EQ(output.size(), 6); // compile, link, compile, link, 2 dyn. lib links + + EXPECT_TRUE(fs::exists("subdir1/hello.o")); + EXPECT_TRUE(fs::exists("subdir1/libhello.so.1.0.0")); + EXPECT_TRUE(fs::exists("subdir1/libhello.so.1")); + EXPECT_TRUE(fs::exists("subdir1/libhello.so")); + EXPECT_TRUE(fs::exists("runmain.o")); + EXPECT_TRUE(fs::exists("runmain")); + + result = run_command("./runmain", output); + EXPECT_EQ(result, 0); + ASSERT_EQ(output.size(), 1); + EXPECT_EQ(output[0], "Hello."); + + result = run_command("../ymake clean", output); + EXPECT_EQ(result, 0); + ASSERT_EQ(output.size(), 8); // hello.o, hello.d, hello.so.1.0.0, hello.so.1, hello.so, runmain.o, runmain.d, runmain + + EXPECT_TRUE(!fs::exists("subdir1/hello.o")); + EXPECT_TRUE(!fs::exists("subdir1/libhello.so.1.0.0")); + EXPECT_TRUE(!fs::exists("subdir1/libhello.so.1")); + EXPECT_TRUE(!fs::exists("subdir1/libhello.so")); + EXPECT_TRUE(!fs::exists("runmain.o")); + EXPECT_TRUE(!fs::exists("runmain")); +} + // TODO: -// use dynamic lib from subdir // use static lib from subdir in subdir // use dynamic lib from subdir in subdir |