-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jose Luis Rivero <[email protected]>
- Loading branch information
Showing
20 changed files
with
75 additions
and
75 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
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
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
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
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
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
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
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
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
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,54 @@ | ||
#!/bin/bash | ||
TEST_STATUS=0 | ||
|
||
echo | ||
echo Expect ignition-c_child to require ignition-c_no_deps | ||
pkg-config ignition-c_child --print-requires | ||
if ! pkg-config ignition-c_child --print-requires \ | ||
| grep ignition-c_no_deps | ||
then | ||
echo oops | ||
TEST_STATUS=1 | ||
fi | ||
|
||
echo | ||
echo Expect ignition-c_child to not privately require ignition-c_no_deps | ||
pkg-config ignition-c_child --print-requires-private | ||
if pkg-config ignition-c_child --print-requires-private \ | ||
| grep ignition-c_no_deps | ||
then | ||
echo oops | ||
TEST_STATUS=1 | ||
fi | ||
|
||
echo | ||
echo Expect ignition-c_child_private to privately require ignition-c_no_deps | ||
pkg-config ignition-c_child_private --print-requires-private | ||
if ! pkg-config ignition-c_child_private --print-requires-private \ | ||
| grep ignition-c_no_deps | ||
then | ||
echo oops | ||
TEST_STATUS=1 | ||
fi | ||
|
||
echo | ||
echo Expect ignition-c_child_private to not require ignition-c_no_deps | ||
pkg-config ignition-c_child_private --print-requires | ||
if pkg-config ignition-c_child_private --print-requires \ | ||
| grep ignition-c_no_deps | ||
then | ||
echo oops | ||
TEST_STATUS=1 | ||
fi | ||
|
||
echo | ||
if [[ $TEST_STATUS -eq 0 ]] | ||
then | ||
echo Successfully detected ignition-c_nodep requirements | ||
cp c_child_requires_c_nodep_pass.xml ../test_results/c_child_requires_c_nodep.xml | ||
exit 0 | ||
else | ||
echo Could not detect all ignition-c_nodep requirements correctly | ||
cp c_child_requires_c_nodep_fail.xml ../test_results/c_child_requires_c_nodep.xml | ||
exit 1 | ||
fi |
This file was deleted.
Oops, something went wrong.