mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
Rename Lua test folder
This commit is contained in:
parent
a8945714e8
commit
5f088cec23
40 changed files with 30 additions and 30 deletions
|
@ -1,5 +1,5 @@
|
|||
#!../lua
|
||||
-- $Id: testes/all.lua $
|
||||
-- $Id: test/all.lua $
|
||||
-- See Copyright Notice at the end of this file
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/api.lua $
|
||||
-- $Id: test/api.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
if T==nil then
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/attrib.lua $
|
||||
-- $Id: test/attrib.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing require"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/big.lua $
|
||||
-- $Id: test/big.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
if _soft then
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/bitwise.lua $
|
||||
-- $Id: test/bitwise.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print("testing bitwise operations")
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/calls.lua $
|
||||
-- $Id: test/calls.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print("testing functions and calls")
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/closure.lua $
|
||||
-- $Id: test/closure.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing closures"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/code.lua $
|
||||
-- $Id: test/code.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
if T==nil then
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/constructs.lua $
|
||||
-- $Id: test/constructs.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
;;print "testing syntax";;
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/coroutine.lua $
|
||||
-- $Id: test/coroutine.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing coroutines"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/cstack.lua $
|
||||
-- $Id: test/cstack.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/db.lua $
|
||||
-- $Id: test/db.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
-- testing debug library
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/errors.lua $
|
||||
-- $Id: test/errors.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print("testing errors")
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/events.lua $
|
||||
-- $Id: test/events.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing metatables')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/files.lua $
|
||||
-- $Id: test/files.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
local debug = require "debug"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/gc.lua $
|
||||
-- $Id: test/gc.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing incremental garbage collection')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/gengc.lua $
|
||||
-- $Id: test/gengc.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing generational garbage collection')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/goto.lua $
|
||||
-- $Id: test/goto.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
collectgarbage()
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/literals.lua $
|
||||
-- $Id: test/literals.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing scanner')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/locals.lua $
|
||||
-- $Id: test/locals.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing local variables and environments')
|
|
@ -1,5 +1,5 @@
|
|||
# testing special comment on first line
|
||||
-- $Id: testes/main.lua $
|
||||
-- $Id: test/main.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
-- most (all?) tests here assume a reasonable "Unix-like" shell
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/math.lua $
|
||||
-- $Id: test/math.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print("testing numbers and math lib")
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/nextvar.lua $
|
||||
-- $Id: test/nextvar.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing tables, next, and for')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/pm.lua $
|
||||
-- $Id: test/pm.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing pattern matching')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/sort.lua $
|
||||
-- $Id: test/sort.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing (parts of) table library"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/strings.lua $
|
||||
-- $Id: test/strings.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing strings and string library')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/tpack.lua $
|
||||
-- $Id: test/tpack.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
local pack = string.pack
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/utf8.lua $
|
||||
-- $Id: test/utf8.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing UTF-8 library"
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/vararg.lua $
|
||||
-- $Id: test/vararg.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print('testing vararg')
|
|
@ -1,4 +1,4 @@
|
|||
-- $Id: testes/verybig.lua $
|
||||
-- $Id: test/verybig.lua $
|
||||
-- See Copyright Notice in file all.lua
|
||||
|
||||
print "testing RK"
|
Loading…
Reference in a new issue