Skip to content

Commit

Permalink
3.3.1 dev (#20)
Browse files Browse the repository at this point in the history
* fixed bug #19

* ready for 3.3.1

Co-authored-by: Configuration Manager <[email protected]>
  • Loading branch information
ecow and Configuration Manager authored Jun 26, 2021
1 parent b442c65 commit dbd5aa9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased]

## [3.3.1]

### Fixed

- bug #19 (FAILCHECK mode does not work)
- references in change log

## [3.3.0]

### Fixed
Expand Down Expand Up @@ -228,7 +235,9 @@ aligned with SDaaS [2.1.0]
First release, aligned with SDaaS [2.0.3] (Talete)


[Unreleased]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.2.2...HEAD
[Unreleased]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.3.1...HEAD
[3.3.1]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.3.1...3.3.0
[3.3.0]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.3.0...3.2.2
[3.2.2]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.2.2...3.1.1
[3.2.1]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.2.1...3.1.0
[3.2.0]: https://github.com/linkeddatacenter/sdaas-ce/compare/3.2.0...3.1.0
Expand Down
8 changes: 4 additions & 4 deletions scripts/testing.include
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function SD_DATA_TEST {
if [ "$failMode" = "FASTFAIL" ]; then
SD_FATAL_ERROR "test FASTFAIL"
else
failedTests=$((failedTests++))
((failedTests++))
fi
;;
esac
Expand All @@ -38,13 +38,13 @@ function SD_DATA_TEST {
if [ "$failMode" = "FASTFAIL" ]; then
SD_FATAL_ERROR "test FASTFAIL"
else
failedTests=$((failedTests++))
((failedTests++))
fi
fi
done

if [ "$failMode" = "FAILCHECK " ] && [ $failedTests -gt 0 ] ; then
SD_FATAL_ERROR "abort on$failedTests test failed."
if [ "$failMode" = "FAILCHECK " -a $failedTests -gt 0 ] ; then
SD_FATAL_ERROR "abort on $failedTests test failed."
fi
}

0 comments on commit dbd5aa9

Please sign in to comment.