Update of /cvsroot/wxlua/wxLua/samples
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32289/wxLua/samples
Modified Files:
unittest.wx.lua
Log Message:
Comment our changes to bitlib to make updating it easier
Index: unittest.wx.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/samples/unittest.wx.lua,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** unittest.wx.lua 1 Feb 2008 05:36:39 -0000 1.23
--- unittest.wx.lua 9 Dec 2008 18:19:24 -0000 1.24
***************
*** 339,343 ****
-- ---------------------------------------------------------------------------
! PrintOk(bit.bnot(0) == -1, "Test bit library bit.bnot.")
PrintOk(bit.band(0x1, 0x3, 0x5) == 1, "Test bit library bit.band.")
PrintOk(bit.bor(0x1, 0x3, 0x5) == 7, "Test bit library bit.bor.")
--- 339,344 ----
-- ---------------------------------------------------------------------------
! PrintOk(bit.bnot(bit.bnot(0)) == 0, "Test bit library bit.bnot.")
! PrintOk(bit.bnot(bit.bnot(0xF)) == 0xF, "Test bit library bit.bnot.")
PrintOk(bit.band(0x1, 0x3, 0x5) == 1, "Test bit library bit.band.")
PrintOk(bit.bor(0x1, 0x3, 0x5) == 7, "Test bit library bit.bor.")
|