• This project
    • Loading...
  • Sign in

K'van / Tales of MajEyal · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • t-engine4
  • src
  • luabitop
  • msvctest.bat
  • plop ...
    dae5e514
    
    git-svn-id: http://svn.net-core.org/repos/t-engine4@3053 51575b47-30f0-44d4-a5cc-537603b46e54
    dg authored
    2011-03-23 17:13:28 +0000  
    Browse Files »
msvctest.bat 308 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
@rem Script to test Lua BitOp.

@setlocal
@rem Path to the Lua executable:
@set LUA=lua

@echo off
for %%t in (bittest.lua nsievebits.lua md5test.lua) do (
  echo testing %%t
  %LUA% %%t
  if errorlevel 1^
    goto :FAIL
)
echo ****** ALL TESTS OK ******
goto :END

:FAIL
echo ****** TEST FAILED ******
:END