diff options
Diffstat (limited to '3rdparty/genie/tests/actions/test_clean.lua')
-rw-r--r-- | 3rdparty/genie/tests/actions/test_clean.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3rdparty/genie/tests/actions/test_clean.lua b/3rdparty/genie/tests/actions/test_clean.lua index f0badbc14a6..17d9c3a8507 100644 --- a/3rdparty/genie/tests/actions/test_clean.lua +++ b/3rdparty/genie/tests/actions/test_clean.lua @@ -147,6 +147,18 @@ end + function T.clean.CppBundleFiles() + prj = project "MyProject" + language "C++" + kind "Bundle" + prepare() + test.contains(removed, "MyProject.dll") + test.contains(removed, "libMyProject.so") + test.contains(removed, "MyProject.lib") + test.contains(removed, "MyProject.bundle") + end + + function T.clean.CppStaticLibFiles() prj = project "MyProject" language "C++" |