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-22 22:59:34 +0300
committerstarkos <none@none>2008-12-22 22:59:34 +0300
commit9a3ced52dd5549c482f962d3a1f30697bbb5b686 (patch)
tree4afc29127dea0b2df15ad3d77beef320201350e6 /tests/test_os.lua
parenta140af7c59d895c59feb4e1fcf1db4bd616c2d99 (diff)
Added initial take on os.findlib()
Diffstat (limited to 'tests/test_os.lua')
-rw-r--r--tests/test_os.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_os.lua b/tests/test_os.lua
index ebbd012..1c65605 100644
--- a/tests/test_os.lua
+++ b/tests/test_os.lua
@@ -9,6 +9,16 @@
--
+-- os.findlib() tests
+--
+
+ function T.os.findlib_FindSystemLib()
+ local libname = iif(os.is("windows"), "user32", "m")
+ test.istrue(os.findlib(libname))
+ end
+
+
+--
-- os.isfile() tests
--