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>2009-11-25 23:27:57 +0300
committerstarkos <none@none>2009-11-25 23:27:57 +0300
commit67cdddd275b18526de1af3cc78c285350a5d633f (patch)
tree5d8e113e965fab88762a2fcde65848f03f1f8e60 /tests/testfx.lua
parente23a53f2426d26ff58d82e77d6cf42edaed2e34f (diff)
Implemented includedirs() and defines() for Xcode
Diffstat (limited to 'tests/testfx.lua')
-rw-r--r--tests/testfx.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testfx.lua b/tests/testfx.lua
index 823ff92..aada444 100644
--- a/tests/testfx.lua
+++ b/tests/testfx.lua
@@ -18,7 +18,7 @@
function test.capture(expected)
local actual = io.endcapture()
-
+
local ait = actual:gfind("(.-)" .. io.eol)
local eit = expected:gfind("(.-)\n")
@@ -29,6 +29,7 @@
if (etxt ~= atxt) then
test.fail("(%d) expected:\n%s\n...but was:\n%s", linenum, etxt, atxt)
end
+
linenum = linenum + 1
atxt = ait()
etxt = eit()