diff options
author | lenz@mysql.com <> | 2003-09-25 23:12:24 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2003-09-25 23:12:24 +0200 |
commit | e92c823c8d57e9c344a7a7a288c5d5247b29c6e2 (patch) | |
tree | af2612c92998500db3b06f89f20ab16c1ac57a4a /sql-bench/as3ap.sh | |
parent | e4c7496c141ad9990a42121bcdd53eb22e90df2f (diff) | |
download | mariadb-git-e92c823c8d57e9c344a7a7a288c5d5247b29c6e2.tar.gz |
- Improved portability of the sql-bench Perl scripts by replacing
the calls of external programs "uname" and "pwd" with Perl builtin
functions "cwd()" and "POSIX::uname()"
Diffstat (limited to 'sql-bench/as3ap.sh')
-rw-r--r-- | sql-bench/as3ap.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql-bench/as3ap.sh b/sql-bench/as3ap.sh index ed796249ebb..f6827c004d7 100644 --- a/sql-bench/as3ap.sh +++ b/sql-bench/as3ap.sh @@ -21,10 +21,11 @@ ##################### Standard benchmark inits ############################## +use Cwd; use DBI; use Benchmark; -chomp($pwd = `pwd`); $pwd = "." if ($pwd eq ''); +$pwd = cwd(); $pwd = "." if ($pwd eq ''); require "$pwd/bench-init.pl" || die "Can't read Configuration file: $!\n"; $opt_loop_count=1; |