summarylogtreecommitdiffstats
path: root/007-luabind-lua-52-fix-test.patch
diff options
context:
space:
mode:
authorPitBall2015-11-10 19:49:28 +0100
committerPitBall2015-11-10 19:49:28 +0100
commit3476bcd709cb40bc472b1cdca62ad3cb528a007a (patch)
treedfcf68c4e7a93586f14f7411e463495ceb1ad10f /007-luabind-lua-52-fix-test.patch
downloadaur-3476bcd709cb40bc472b1cdca62ad3cb528a007a.tar.gz
Initial import
Diffstat (limited to '007-luabind-lua-52-fix-test.patch')
-rw-r--r--007-luabind-lua-52-fix-test.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/007-luabind-lua-52-fix-test.patch b/007-luabind-lua-52-fix-test.patch
new file mode 100644
index 000000000000..533dae603cf8
--- /dev/null
+++ b/007-luabind-lua-52-fix-test.patch
@@ -0,0 +1,31 @@
+From 3866d4c25b7949285dbb7feb90c3025e42a5deea Mon Sep 17 00:00:00 2001
+From: Peter Colberg <peter.colberg@utoronto.ca>
+Date: Wed, 21 Dec 2011 15:13:07 -0500
+Subject: [PATCH] Lua 5.2: fix test_free_functions unit test
+
+The line triggering the error is truncated at a different position.
+---
+ test/test_free_functions.cpp | 7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/test/test_free_functions.cpp b/test/test_free_functions.cpp
+index 6a2df4b..9b649a7 100644
+--- a/test/test_free_functions.cpp
++++ b/test/test_free_functions.cpp
+@@ -144,7 +144,12 @@ void test_main(lua_State* L)
+ catch(luabind::error const& e)
+ {
+ if (std::string("[string \"function failing_fun() error('expected "
+- "erro...\"]:1: expected error message") != lua_tostring(L, -1))
++#if LUA_VERSION_NUM >= 502
++ "error ..."
++#else
++ "erro..."
++#endif
++ "\"]:1: expected error message") != lua_tostring(L, -1))
+ {
+ TEST_ERROR("function failed with unexpected error message");
+ }
+--
+1.8.1.6
+