lua

A copy of the Lua development repository
Log | Files | Refs | README

commit aa4c5cf190f77ab2730af5e21cfd2b830ff329df
parent b47f2cd068fb14a27d3da6fb3d08305b7d7b354d
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 25 Jul 2018 15:30:37 -0300

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:
Mtestes/all.lua | 2+-
Mtestes/api.lua | 2+-
Mtestes/attrib.lua | 2+-
Mtestes/big.lua | 2+-
Mtestes/bitwise.lua | 2+-
Mtestes/calls.lua | 2+-
Mtestes/closure.lua | 2+-
Mtestes/code.lua | 2+-
Mtestes/constructs.lua | 2+-
Mtestes/coroutine.lua | 2+-
Mtestes/db.lua | 2+-
Mtestes/errors.lua | 2+-
Mtestes/events.lua | 2+-
Mtestes/files.lua | 2+-
Mtestes/gc.lua | 2+-
Mtestes/gengc.lua | 2+-
Mtestes/goto.lua | 2+-
Mtestes/literals.lua | 2+-
Mtestes/locals.lua | 2+-
Mtestes/main.lua | 2+-
Mtestes/math.lua | 2+-
Mtestes/nextvar.lua | 2+-
Mtestes/pm.lua | 2+-
Mtestes/sort.lua | 2+-
Mtestes/strings.lua | 2+-
Mtestes/tpack.lua | 2+-
Mtestes/utf8.lua | 2+-
Mtestes/vararg.lua | 2+-
Mtestes/verybig.lua | 2+-
29 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/testes/all.lua b/testes/all.lua @@ -1,5 +1,5 @@ #!../lua --- $Id: all.lua $ +-- $Id: testes/all.lua $ -- See Copyright Notice at the end of this file diff --git a/testes/api.lua b/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 diff --git a/testes/attrib.lua b/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" diff --git a/testes/big.lua b/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 diff --git a/testes/bitwise.lua b/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") diff --git a/testes/calls.lua b/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") diff --git a/testes/closure.lua b/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" diff --git a/testes/code.lua b/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 diff --git a/testes/constructs.lua b/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";; diff --git a/testes/coroutine.lua b/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" diff --git a/testes/db.lua b/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 diff --git a/testes/errors.lua b/testes/errors.lua @@ -1,4 +1,4 @@ --- $Id: errors.lua $ +-- $Id: testes/errors.lua $ -- See Copyright Notice in file all.lua print("testing errors") diff --git a/testes/events.lua b/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') diff --git a/testes/files.lua b/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" diff --git a/testes/gc.lua b/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') diff --git a/testes/gengc.lua b/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') diff --git a/testes/goto.lua b/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() diff --git a/testes/literals.lua b/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') diff --git a/testes/locals.lua b/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') diff --git a/testes/main.lua b/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 diff --git a/testes/math.lua b/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") diff --git a/testes/nextvar.lua b/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') diff --git a/testes/pm.lua b/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') diff --git a/testes/sort.lua b/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" diff --git a/testes/strings.lua b/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') diff --git a/testes/tpack.lua b/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 diff --git a/testes/utf8.lua b/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" diff --git a/testes/vararg.lua b/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') diff --git a/testes/verybig.lua b/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"