فهرست منبع

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'.
Roberto Ierusalimschy 7 سال پیش
والد
کامیت
aa4c5cf190

+ 1 - 1
testes/all.lua

@@ -1,5 +1,5 @@
 #!../lua
--- $Id: all.lua $
+-- $Id: testes/all.lua $
 -- See Copyright Notice at the end of this file
 
 

+ 1 - 1
testes/api.lua

@@ -1,4 +1,4 @@
--- $Id: api.lua,v 1.155 2018/03/09 14:23:48 roberto Exp $
+-- $Id: testes/api.lua $
 -- See Copyright Notice in file all.lua
 
 if T==nil then

+ 1 - 1
testes/attrib.lua

@@ -1,4 +1,4 @@
--- $Id: attrib.lua,v 1.69 2018/03/12 13:51:02 roberto Exp $
+-- $Id: testes/attrib.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing require"

+ 1 - 1
testes/big.lua

@@ -1,4 +1,4 @@
--- $Id: big.lua,v 1.35 2018/03/09 14:23:48 roberto Exp $
+-- $Id: testes/big.lua $
 -- See Copyright Notice in file all.lua
 
 if _soft then

+ 1 - 1
testes/bitwise.lua

@@ -1,4 +1,4 @@
--- $Id: bitwise.lua,v 1.27 2018/02/21 17:49:39 roberto Exp $
+-- $Id: testes/bitwise.lua $
 -- See Copyright Notice in file all.lua
 
 print("testing bitwise operations")

+ 1 - 1
testes/calls.lua

@@ -1,4 +1,4 @@
--- $Id: calls.lua,v 1.66 2018/02/09 16:35:21 roberto Exp $
+-- $Id: testes/calls.lua $
 -- See Copyright Notice in file all.lua
 
 print("testing functions and calls")

+ 1 - 1
testes/closure.lua

@@ -1,4 +1,4 @@
--- $Id: closure.lua,v 1.62 2018/03/12 14:19:36 roberto Exp $
+-- $Id: testes/closure.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing closures"

+ 1 - 1
testes/code.lua

@@ -1,4 +1,4 @@
--- $Id: code.lua,v 1.55 2018/03/12 14:19:36 roberto Exp $
+-- $Id: testes/code.lua $
 -- See Copyright Notice in file all.lua
 
 if T==nil then

+ 1 - 1
testes/constructs.lua

@@ -1,4 +1,4 @@
--- $Id: constructs.lua,v 1.43 2018/02/21 17:41:07 roberto Exp $
+-- $Id: testes/constructs.lua $
 -- See Copyright Notice in file all.lua
 
 ;;print "testing syntax";;

+ 1 - 1
testes/coroutine.lua

@@ -1,4 +1,4 @@
--- $Id: coroutine.lua,v 1.48 2018/03/12 14:19:36 roberto Exp $
+-- $Id: testes/coroutine.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing coroutines"

+ 1 - 1
testes/db.lua

@@ -1,4 +1,4 @@
--- $Id: db.lua,v 1.90 2018/04/02 17:55:58 roberto Exp $
+-- $Id: testes/db.lua $
 -- See Copyright Notice in file all.lua
 
 -- testing debug library

+ 1 - 1
testes/errors.lua

@@ -1,4 +1,4 @@
--- $Id: errors.lua $
+-- $Id: testes/errors.lua $
 -- See Copyright Notice in file all.lua
 
 print("testing errors")

+ 1 - 1
testes/events.lua

@@ -1,4 +1,4 @@
--- $Id: events.lua,v 1.52 2018/03/12 13:51:02 roberto Exp $
+-- $Id: testes/events.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing metatables')

+ 1 - 1
testes/files.lua

@@ -1,4 +1,4 @@
--- $Id: files.lua,v 1.101 2018/03/12 13:51:02 roberto Exp $
+-- $Id: testes/files.lua $
 -- See Copyright Notice in file all.lua
 
 local debug = require "debug"

+ 1 - 1
testes/gc.lua

@@ -1,4 +1,4 @@
--- $Id: gc.lua $
+-- $Id: testes/gc.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing incremental garbage collection')

+ 1 - 1
testes/gengc.lua

@@ -1,4 +1,4 @@
--- $Id: gengc.lua $
+-- $Id: testes/gengc.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing generational garbage collection')

+ 1 - 1
testes/goto.lua

@@ -1,4 +1,4 @@
--- $Id: goto.lua,v 1.15 2017/11/30 13:31:07 roberto Exp $
+-- $Id: testes/goto.lua $
 -- See Copyright Notice in file all.lua
 
 collectgarbage()

+ 1 - 1
testes/literals.lua

@@ -1,4 +1,4 @@
--- $Id: literals.lua,v 1.36 2016/11/07 13:11:28 roberto Exp $
+-- $Id: testes/literals.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing scanner')

+ 1 - 1
testes/locals.lua

@@ -1,4 +1,4 @@
--- $Id: locals.lua,v 1.41 2018/06/19 12:25:39 roberto Exp $
+-- $Id: testes/locals.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing local variables and environments')

+ 1 - 1
testes/main.lua

@@ -1,5 +1,5 @@
 # testing special comment on first line
--- $Id: main.lua,v 1.69 2018/06/19 12:23:50 roberto Exp $
+-- $Id: testes/main.lua $
 -- See Copyright Notice in file all.lua
 
 -- most (all?) tests here assume a reasonable "Unix-like" shell

+ 1 - 1
testes/math.lua

@@ -1,4 +1,4 @@
--- $Id: math.lua,v 1.86 2018/05/09 14:55:52 roberto Exp roberto $
+-- $Id: testes/math.lua $
 -- See Copyright Notice in file all.lua
 
 print("testing numbers and math lib")

+ 1 - 1
testes/nextvar.lua

@@ -1,4 +1,4 @@
--- $Id: nextvar.lua,v 1.85 2018/06/19 12:24:19 roberto Exp $
+-- $Id: testes/nextvar.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing tables, next, and for')

+ 1 - 1
testes/pm.lua

@@ -1,4 +1,4 @@
--- $Id: pm.lua,v 1.50 2018/03/12 14:19:36 roberto Exp $
+-- $Id: testes/pm.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing pattern matching')

+ 1 - 1
testes/sort.lua

@@ -1,4 +1,4 @@
--- $Id: sort.lua,v 1.39 2018/03/12 13:51:02 roberto Exp $
+-- $Id: testes/sort.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing (parts of) table library"

+ 1 - 1
testes/strings.lua

@@ -1,4 +1,4 @@
--- $Id: strings.lua,v 1.89 2018/06/19 12:25:15 roberto Exp $
+-- $Id: testes/strings.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing strings and string library')

+ 1 - 1
testes/tpack.lua

@@ -1,4 +1,4 @@
--- $Id: tpack.lua,v 1.14 2018/06/04 14:26:32 roberto Exp $
+-- $Id: testes/tpack.lua $
 -- See Copyright Notice in file all.lua
 
 local pack = string.pack

+ 1 - 1
testes/utf8.lua

@@ -1,4 +1,4 @@
--- $Id: utf8.lua,v 1.12 2016/11/07 13:11:28 roberto Exp $
+-- $Id: testes/utf8.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing UTF-8 library"

+ 1 - 1
testes/vararg.lua

@@ -1,4 +1,4 @@
--- $Id: vararg.lua,v 1.29 2018/03/12 14:19:36 roberto Exp $
+-- $Id: testes/vararg.lua $
 -- See Copyright Notice in file all.lua
 
 print('testing vararg')

+ 1 - 1
testes/verybig.lua

@@ -1,4 +1,4 @@
--- $Id: verybig.lua,v 1.27 2018/03/09 14:23:48 roberto Exp $
+-- $Id: testes/verybig.lua $
 -- See Copyright Notice in file all.lua
 
 print "testing RK"