aboutsummaryrefslogtreecommitdiff
path: root/testes
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-07-25 15:31:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-07-25 15:31:04 -0300
commitaa4c5cf190f77ab2730af5e21cfd2b830ff329df (patch)
treef78ecc3378989cd68cb4eaae67fb27dabb85f247 /testes
parentb47f2cd068fb14a27d3da6fb3d08305b7d7b354d (diff)
downloadlua-aa4c5cf190f77ab2730af5e21cfd2b830ff329df.tar.gz
lua-aa4c5cf190f77ab2730af5e21cfd2b830ff329df.tar.bz2
lua-aa4c5cf190f77ab2730af5e21cfd2b830ff329df.zip
Added directory to test file names in '$Id:'
From the point of view of 'git', all names are relative to the root directory of the project. So, file names in '$Id:' also should be relative to that directory: the proper name for test file 'all.lua' is 'testes/all.lua'.
Diffstat (limited to 'testes')
-rwxr-xr-xtestes/all.lua2
-rw-r--r--testes/api.lua2
-rw-r--r--testes/attrib.lua2
-rw-r--r--testes/big.lua2
-rwxr-xr-xtestes/bitwise.lua2
-rw-r--r--testes/calls.lua2
-rw-r--r--testes/closure.lua2
-rw-r--r--testes/code.lua2
-rw-r--r--testes/constructs.lua2
-rw-r--r--testes/coroutine.lua2
-rw-r--r--testes/db.lua2
-rw-r--r--testes/errors.lua2
-rw-r--r--testes/events.lua2
-rw-r--r--testes/files.lua2
-rw-r--r--testes/gc.lua2
-rw-r--r--testes/gengc.lua2
-rw-r--r--testes/goto.lua2
-rw-r--r--testes/literals.lua2
-rw-r--r--testes/locals.lua2
-rw-r--r--testes/main.lua2
-rw-r--r--testes/math.lua2
-rw-r--r--testes/nextvar.lua2
-rw-r--r--testes/pm.lua2
-rw-r--r--testes/sort.lua2
-rw-r--r--testes/strings.lua2
-rw-r--r--testes/tpack.lua2
-rw-r--r--testes/utf8.lua2
-rw-r--r--testes/vararg.lua2
-rw-r--r--testes/verybig.lua2
29 files changed, 29 insertions, 29 deletions
diff --git a/testes/all.lua b/testes/all.lua
index 37796254..26d24976 100755
--- a/testes/all.lua
+++ b/testes/all.lua
@@ -1,5 +1,5 @@
1#!../lua 1#!../lua
2-- $Id: all.lua $ 2-- $Id: testes/all.lua $
3-- See Copyright Notice at the end of this file 3-- See Copyright Notice at the end of this file
4 4
5 5
diff --git a/testes/api.lua b/testes/api.lua
index 836a6070..bebb6d2d 100644
--- a/testes/api.lua
+++ b/testes/api.lua
@@ -1,4 +1,4 @@
1-- $Id: api.lua,v 1.155 2018/03/09 14:23:48 roberto Exp $ 1-- $Id: testes/api.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4if T==nil then 4if T==nil then
diff --git a/testes/attrib.lua b/testes/attrib.lua
index 79a08a4f..dcafd634 100644
--- a/testes/attrib.lua
+++ b/testes/attrib.lua
@@ -1,4 +1,4 @@
1-- $Id: attrib.lua,v 1.69 2018/03/12 13:51:02 roberto Exp $ 1-- $Id: testes/attrib.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing require" 4print "testing require"
diff --git a/testes/big.lua b/testes/big.lua
index ebee1ec0..150d15dc 100644
--- a/testes/big.lua
+++ b/testes/big.lua
@@ -1,4 +1,4 @@
1-- $Id: big.lua,v 1.35 2018/03/09 14:23:48 roberto Exp $ 1-- $Id: testes/big.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4if _soft then 4if _soft then
diff --git a/testes/bitwise.lua b/testes/bitwise.lua
index 3e7079d3..af542e7f 100755
--- a/testes/bitwise.lua
+++ b/testes/bitwise.lua
@@ -1,4 +1,4 @@
1-- $Id: bitwise.lua,v 1.27 2018/02/21 17:49:39 roberto Exp $ 1-- $Id: testes/bitwise.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print("testing bitwise operations") 4print("testing bitwise operations")
diff --git a/testes/calls.lua b/testes/calls.lua
index 95d9d6d6..f5108a47 100644
--- a/testes/calls.lua
+++ b/testes/calls.lua
@@ -1,4 +1,4 @@
1-- $Id: calls.lua,v 1.66 2018/02/09 16:35:21 roberto Exp $ 1-- $Id: testes/calls.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print("testing functions and calls") 4print("testing functions and calls")
diff --git a/testes/closure.lua b/testes/closure.lua
index 79da3cc0..5d090d91 100644
--- a/testes/closure.lua
+++ b/testes/closure.lua
@@ -1,4 +1,4 @@
1-- $Id: closure.lua,v 1.62 2018/03/12 14:19:36 roberto Exp $ 1-- $Id: testes/closure.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing closures" 4print "testing closures"
diff --git a/testes/code.lua b/testes/code.lua
index 1a01c4a2..6bd6ebfa 100644
--- a/testes/code.lua
+++ b/testes/code.lua
@@ -1,4 +1,4 @@
1-- $Id: code.lua,v 1.55 2018/03/12 14:19:36 roberto Exp $ 1-- $Id: testes/code.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4if T==nil then 4if T==nil then
diff --git a/testes/constructs.lua b/testes/constructs.lua
index 7796c46f..a83df79e 100644
--- a/testes/constructs.lua
+++ b/testes/constructs.lua
@@ -1,4 +1,4 @@
1-- $Id: constructs.lua,v 1.43 2018/02/21 17:41:07 roberto Exp $ 1-- $Id: testes/constructs.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4;;print "testing syntax";; 4;;print "testing syntax";;
diff --git a/testes/coroutine.lua b/testes/coroutine.lua
index 22087320..182c1e18 100644
--- a/testes/coroutine.lua
+++ b/testes/coroutine.lua
@@ -1,4 +1,4 @@
1-- $Id: coroutine.lua,v 1.48 2018/03/12 14:19:36 roberto Exp $ 1-- $Id: testes/coroutine.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing coroutines" 4print "testing coroutines"
diff --git a/testes/db.lua b/testes/db.lua
index 36d1cdaa..2feaaef1 100644
--- a/testes/db.lua
+++ b/testes/db.lua
@@ -1,4 +1,4 @@
1-- $Id: db.lua,v 1.90 2018/04/02 17:55:58 roberto Exp $ 1-- $Id: testes/db.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4-- testing debug library 4-- testing debug library
diff --git a/testes/errors.lua b/testes/errors.lua
index 19a7b6fa..142e8b33 100644
--- a/testes/errors.lua
+++ b/testes/errors.lua
@@ -1,4 +1,4 @@
1-- $Id: errors.lua $ 1-- $Id: testes/errors.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print("testing errors") 4print("testing errors")
diff --git a/testes/events.lua b/testes/events.lua
index cf064d3d..21a822a7 100644
--- a/testes/events.lua
+++ b/testes/events.lua
@@ -1,4 +1,4 @@
1-- $Id: events.lua,v 1.52 2018/03/12 13:51:02 roberto Exp $ 1-- $Id: testes/events.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing metatables') 4print('testing metatables')
diff --git a/testes/files.lua b/testes/files.lua
index b2c7c202..c3e42235 100644
--- a/testes/files.lua
+++ b/testes/files.lua
@@ -1,4 +1,4 @@
1-- $Id: files.lua,v 1.101 2018/03/12 13:51:02 roberto Exp $ 1-- $Id: testes/files.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4local debug = require "debug" 4local debug = require "debug"
diff --git a/testes/gc.lua b/testes/gc.lua
index 05072efd..8b9179c8 100644
--- a/testes/gc.lua
+++ b/testes/gc.lua
@@ -1,4 +1,4 @@
1-- $Id: gc.lua $ 1-- $Id: testes/gc.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing incremental garbage collection') 4print('testing incremental garbage collection')
diff --git a/testes/gengc.lua b/testes/gengc.lua
index 36aed806..b02f471b 100644
--- a/testes/gengc.lua
+++ b/testes/gengc.lua
@@ -1,4 +1,4 @@
1-- $Id: gengc.lua $ 1-- $Id: testes/gengc.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing generational garbage collection') 4print('testing generational garbage collection')
diff --git a/testes/goto.lua b/testes/goto.lua
index d22601f9..238bc04a 100644
--- a/testes/goto.lua
+++ b/testes/goto.lua
@@ -1,4 +1,4 @@
1-- $Id: goto.lua,v 1.15 2017/11/30 13:31:07 roberto Exp $ 1-- $Id: testes/goto.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4collectgarbage() 4collectgarbage()
diff --git a/testes/literals.lua b/testes/literals.lua
index 3922b3f5..76c08f12 100644
--- a/testes/literals.lua
+++ b/testes/literals.lua
@@ -1,4 +1,4 @@
1-- $Id: literals.lua,v 1.36 2016/11/07 13:11:28 roberto Exp $ 1-- $Id: testes/literals.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing scanner') 4print('testing scanner')
diff --git a/testes/locals.lua b/testes/locals.lua
index f0780a03..14e49a7c 100644
--- a/testes/locals.lua
+++ b/testes/locals.lua
@@ -1,4 +1,4 @@
1-- $Id: locals.lua,v 1.41 2018/06/19 12:25:39 roberto Exp $ 1-- $Id: testes/locals.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing local variables and environments') 4print('testing local variables and environments')
diff --git a/testes/main.lua b/testes/main.lua
index 582b39c0..c7bde0d9 100644
--- a/testes/main.lua
+++ b/testes/main.lua
@@ -1,5 +1,5 @@
1# testing special comment on first line 1# testing special comment on first line
2-- $Id: main.lua,v 1.69 2018/06/19 12:23:50 roberto Exp $ 2-- $Id: testes/main.lua $
3-- See Copyright Notice in file all.lua 3-- See Copyright Notice in file all.lua
4 4
5-- most (all?) tests here assume a reasonable "Unix-like" shell 5-- most (all?) tests here assume a reasonable "Unix-like" shell
diff --git a/testes/math.lua b/testes/math.lua
index e5c9d8ec..853dc20f 100644
--- a/testes/math.lua
+++ b/testes/math.lua
@@ -1,4 +1,4 @@
1-- $Id: math.lua,v 1.86 2018/05/09 14:55:52 roberto Exp roberto $ 1-- $Id: testes/math.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print("testing numbers and math lib") 4print("testing numbers and math lib")
diff --git a/testes/nextvar.lua b/testes/nextvar.lua
index 3ac3acd9..d2306ed1 100644
--- a/testes/nextvar.lua
+++ b/testes/nextvar.lua
@@ -1,4 +1,4 @@
1-- $Id: nextvar.lua,v 1.85 2018/06/19 12:24:19 roberto Exp $ 1-- $Id: testes/nextvar.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing tables, next, and for') 4print('testing tables, next, and for')
diff --git a/testes/pm.lua b/testes/pm.lua
index e517c8b6..cdcf3bec 100644
--- a/testes/pm.lua
+++ b/testes/pm.lua
@@ -1,4 +1,4 @@
1-- $Id: pm.lua,v 1.50 2018/03/12 14:19:36 roberto Exp $ 1-- $Id: testes/pm.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing pattern matching') 4print('testing pattern matching')
diff --git a/testes/sort.lua b/testes/sort.lua
index 6eb9b706..ef405d92 100644
--- a/testes/sort.lua
+++ b/testes/sort.lua
@@ -1,4 +1,4 @@
1-- $Id: sort.lua,v 1.39 2018/03/12 13:51:02 roberto Exp $ 1-- $Id: testes/sort.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing (parts of) table library" 4print "testing (parts of) table library"
diff --git a/testes/strings.lua b/testes/strings.lua
index dd720b65..1260dbcc 100644
--- a/testes/strings.lua
+++ b/testes/strings.lua
@@ -1,4 +1,4 @@
1-- $Id: strings.lua,v 1.89 2018/06/19 12:25:15 roberto Exp $ 1-- $Id: testes/strings.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing strings and string library') 4print('testing strings and string library')
diff --git a/testes/tpack.lua b/testes/tpack.lua
index 0e639cc5..4c5fc7f7 100644
--- a/testes/tpack.lua
+++ b/testes/tpack.lua
@@ -1,4 +1,4 @@
1-- $Id: tpack.lua,v 1.14 2018/06/04 14:26:32 roberto Exp $ 1-- $Id: testes/tpack.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4local pack = string.pack 4local pack = string.pack
diff --git a/testes/utf8.lua b/testes/utf8.lua
index ebc190b7..4b6a57fd 100644
--- a/testes/utf8.lua
+++ b/testes/utf8.lua
@@ -1,4 +1,4 @@
1-- $Id: utf8.lua,v 1.12 2016/11/07 13:11:28 roberto Exp $ 1-- $Id: testes/utf8.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing UTF-8 library" 4print "testing UTF-8 library"
diff --git a/testes/vararg.lua b/testes/vararg.lua
index 4d5ce4ab..44848d25 100644
--- a/testes/vararg.lua
+++ b/testes/vararg.lua
@@ -1,4 +1,4 @@
1-- $Id: vararg.lua,v 1.29 2018/03/12 14:19:36 roberto Exp $ 1-- $Id: testes/vararg.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print('testing vararg') 4print('testing vararg')
diff --git a/testes/verybig.lua b/testes/verybig.lua
index 5b29dea7..8fb7b13e 100644
--- a/testes/verybig.lua
+++ b/testes/verybig.lua
@@ -1,4 +1,4 @@
1-- $Id: verybig.lua,v 1.27 2018/03/09 14:23:48 roberto Exp $ 1-- $Id: testes/verybig.lua $
2-- See Copyright Notice in file all.lua 2-- See Copyright Notice in file all.lua
3 3
4print "testing RK" 4print "testing RK"