Skip to content

Commit

Permalink
TEST - Easier Black Box Testing
Browse files Browse the repository at this point in the history
- added `bbt-jhove` symlink to project root;
- fixed `travis-test.sh` script to work with symlinks; and
- changed `.travis.yml` to use the symlink.
  • Loading branch information
carlwilson committed May 21, 2018
1 parent 66ec7c6 commit 61ac2af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ before_install:

script:
- mvn clean install -DjacocoAgg
- "./jhove-bbt/scripts/travis-test.sh"
- "./bbt-jhove"
- mvn verify -DjacocoAgg

after_success:
Expand Down
1 change: 1 addition & 0 deletions bbt-jhove
2 changes: 1 addition & 1 deletion jhove-bbt/scripts/travis-test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Grab the execution directory
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
SCRIPT_DIR="$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )")"
export SCRIPT_DIR

# Include utils script
Expand Down

0 comments on commit 61ac2af

Please sign in to comment.