-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbb952c
commit 7dd6f31
Showing
6 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
AUTOMAKE_OPTIONS = foreign | ||
SUBDIRS = src doc scripts | ||
SUBDIRS = src doc scripts tests | ||
|
||
extra_DIST = ChangeLog | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
TESTS = chdir-ok.test chdir-not-ok.test | ||
XFAIL_TESTS = chdir-not-ok.test | ||
|
||
EXTRA_DIST = *.test | ||
|
||
never:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/sh | ||
# | ||
|
||
RECOVERJPEG="$PWD/../src/recoverjpeg" | ||
trap "rm -rf $PWD/$0.dir" INT QUIT TERM EXIT | ||
mkdir "$0.dir" | ||
cd "$0.dir" | ||
|
||
${RECOVERJPEG} -o foo ${RECOVERJPEG} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#! /bin/sh | ||
# | ||
|
||
RECOVERJPEG="$PWD/../src/recoverjpeg" | ||
trap "rm -rf $PWD/$0.dir" INT QUIT TERM EXIT | ||
mkdir "$0.dir" | ||
cd "$0.dir" | ||
|
||
mkdir -p foo/bar | ||
${RECOVERJPEG} -o foo -o bar ${RECOVERJPEG} |