diff options
author | serg@serg.mylan <> | 2006-06-01 12:25:47 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2006-06-01 12:25:47 +0200 |
commit | 5409997d49a8c228f1a6a2c029572fcf1f221caf (patch) | |
tree | 445a123eb59c53a13ae718cbc126d350bc89610f /unittest/unit.pl | |
parent | 2b9b84460aa3e2b0dce089a4067052a16dab7278 (diff) | |
download | mariadb-git-5409997d49a8c228f1a6a2c029572fcf1f221caf.tar.gz |
unittest:
rename *.t* to *-t* to be automake-friendly
simplify Makefiles
test_atomic.c:
move to unittest, add GPL comment, fix warnings, convert to tap framework.
configure:
remove custom tests for available types, use AC_CHECK_TYPE instead
x86-gcc.h:
fix gcc -ansi errors while maintaining readability
ignore:
added *-t
Diffstat (limited to 'unittest/unit.pl')
-rw-r--r-- | unittest/unit.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/unit.pl b/unittest/unit.pl index cae394cf9b6..3092a874192 100644 --- a/unittest/unit.pl +++ b/unittest/unit.pl @@ -59,7 +59,7 @@ sub _find_test_files (@) { my @files; find sub { $File::Find::prune = 1 if /^SCCS$/; - push(@files, $File::Find::name) if -x _ && /\.t\z/; + push(@files, $File::Find::name) if -x _ && /-t\z/; }, @dirs; return @files; } |