1. 03 4月, 2015 3 次提交
  2. 02 4月, 2015 2 次提交
  3. 01 4月, 2015 4 次提交
  4. 25 3月, 2015 2 次提交
  5. 24 3月, 2015 2 次提交
    • S
      selftests: Add tool to generate kselftest tar archive · f901caaf
      Shuah Khan 提交于
      gen_kselftest_tar.sh tool generates kselftest tar archive. This tool
      supports uncompressed tar, gz, bz, and xz compression formats and the
      default compression format is gzip. This tool runs kselftest install
      tool as its back-end.
      
      Usage:
      cd tools/testing/selftests
      ./gen_kselftest_tar [ tar | targz | tarbz2 | tarxz ]
      Signed-off-by: NShuah Khan <shuahkh@osg.samsung.com>
      f901caaf
    • S
      selftests: Add kselftest install tool · 21979405
      Shuah Khan 提交于
      kselftest_install.sh tool installs selftests in default location
      which is tools/testing/selftests/kselftest or an user specified
      location. This tool invokes back-end selftests install target with
      the install location.
      
      Usage:
      cd tools/testing/selftests
      ./kselftest_install.sh [ install_dir ]
      Signed-off-by: NShuah Khan <shuahkh@osg.samsung.com>
      21979405
  6. 20 3月, 2015 4 次提交
  7. 14 3月, 2015 2 次提交
    • M
      selftests: Add install target · 32dcfba6
      Michael Ellerman 提交于
      This adds make install support to selftests. The basic usage is:
      
      $ cd tools/testing/selftests
      $ make install
      
      That installs into tools/testing/selftests/install, which can then be
      copied where ever necessary.
      
      The install destination is also configurable using eg:
      
      $ INSTALL_PATH=/mnt/selftests make install
      
      The implementation uses two targets in the child makefiles. The first
      "install" is expected to install all files into $(INSTALL_PATH).
      
      The second, "emit_tests", is expected to emit the test instructions (ie.
      bash script) on stdout. Separating this from install means the child
      makefiles need no knowledge of the location of the test script.
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      Signed-off-by: NShuah Khan <shuahkh@osg.samsung.com>
      32dcfba6
    • M
      selftests: Introduce minimal shared logic for running tests · 5e29a910
      Michael Ellerman 提交于
      This adds a Make include file which most selftests can then include to
      get the run_tests logic.
      
      On its own this has the advantage of some reduction in repetition, and
      also means the pass/fail message is defined in fewer places.
      
      However the key advantage is it will allow us to implement install very
      simply in a subsequent patch.
      
      The default implementation just executes each program in $(TEST_PROGS).
      
      We use a variable to hold the default implementation of $(RUN_TESTS)
      because that gives us a clean way to override it if necessary, ie. using
      override. The mount, memory-hotplug and mqueue tests use that to provide
      a different implementation.
      
      Tests are not run via /bin/bash, so if they are scripts they must be
      executable, we add a+x to several.
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      Signed-off-by: NShuah Khan <shuahkh@osg.samsung.com>
      5e29a910
  8. 13 3月, 2015 19 次提交
  9. 09 3月, 2015 2 次提交