Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorrghetta@larix.it <rghetta@larix.it>2012-04-18 19:59:04 +0400
committerrghetta@larix.it <rghetta@larix.it>2012-04-18 19:59:04 +0400
commitac4cf430c7b44818464c9d019469deaf79a432d5 (patch)
tree68673e1df54652b47d0485214bc84ce4089a84bf /tests
parent69f9860446f071ade890b8461ce1d824025b5cfe (diff)
adds option generate_user to control .user files
--HG-- branch : WDS-build
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/test_clean.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/actions/test_clean.lua b/tests/actions/test_clean.lua
index f0badbc..bd205d6 100644
--- a/tests/actions/test_clean.lua
+++ b/tests/actions/test_clean.lua
@@ -93,7 +93,9 @@
kind "ConsoleApp"
prepare()
test.contains(removed, "MyProject.csproj")
- test.contains(removed, "MyProject.csproj.user")
+ if _OPTIONS.generate_user then
+ test.contains(removed, "MyProject.csproj.user")
+ end
test.contains(removed, "MyProject.pdb")
test.contains(removed, "MyProject.idb")
test.contains(removed, "MyProject.ilk")