aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiao Yang <xiaox.yang@intel.com>2019-07-26 17:32:58 +0800
committerPhilip Li <philip.li@intel.com>2019-07-26 23:50:20 +0800
commitbb42d02cb32c23e781303f83f24730c4270617b0 (patch)
tree0a6cffaabc56cf24199f232e32c062b59f12c30c
parent1dd65bef474ce18d21593b30a75ea66375c51cd3 (diff)
downloadlkp-tests-bb42d02cb32c23e781303f83f24730c4270617b0.tar.gz
pack/oltp: Remove the pack method
oltp has converted pack to makepkg so remove the pack method Signed-off-by: Xiao Yang <xiaox.yang@intel.com> Signed-off-by: Philip Li <philip.li@intel.com>
-rwxr-xr-xpack/oltp22
1 files changed, 0 insertions, 22 deletions
diff --git a/pack/oltp b/pack/oltp
deleted file mode 100755
index 362b686b..00000000
--- a/pack/oltp
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-download()
-{
- git_clone_update https://github.com/akopytov/sysbench || return
-}
-
-build()
-{
- ./autogen.sh
- # running sysbench may get "Illegal instruction" error
- # on some arches so avoid it by --without-gcc-arch
- ./configure --without-gcc-arch
- make
-}
-
-install()
-{
- export DESTDIR=$BM_ROOT/sysbench
- make install
- cp -af $source_dir/* $BM_ROOT/sysbench
-}