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
diff options
context:
space:
mode:
authorstarkos <none@none>2008-12-06 00:18:47 +0300
committerstarkos <none@none>2008-12-06 00:18:47 +0300
commit1c97171f69cd704db6e2aa0f93dec772d0e18792 (patch)
tree510d0446948106a73896c48f4a893039c23c4186 /tests/test_premake.lua
parentbd14e9a2f368cc2ef858669a8431456480ab2990 (diff)
Big refactoring, bug fixes bug and small, performance improvements (branches/csharp r607:628)
Diffstat (limited to 'tests/test_premake.lua')
-rw-r--r--tests/test_premake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_premake.lua b/tests/test_premake.lua
index a10f547..ecbaa6d 100644
--- a/tests/test_premake.lua
+++ b/tests/test_premake.lua
@@ -16,7 +16,7 @@
_ACTION = "gmake"
premake.checktools()
test.isequal("gcc", _OPTIONS.cc)
- test.isequal("mcs", _OPTIONS.csc)
+ test.isequal("mono", _OPTIONS.dotnet)
end
@@ -25,7 +25,7 @@
_OPTIONS["cc"] = "xyz"
ok, err = premake.checktools()
test.isfalse( ok )
- test.isequal("the GNU Make action does not support /cc=xyz", err)
+ test.isequal("the GNU Make action does not support /cc=xyz (yet)", err)
end