-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-not-yet-working-features.sh
executable file
·16 lines (13 loc) · 1.59 KB
/
check-not-yet-working-features.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
for f in AggregationAcceptance.feature CreateAcceptance.feature DeleteAcceptance.feature EqualsAcceptance.feature ExpressionAcceptance.feature FunctionsAcceptance.feature JoinAcceptance.feature KeysAcceptance.feature LabelsAcceptance.feature LargeCreateQuery.feature ListComprehension.feature MatchAcceptance2.feature MatchAcceptance.feature MatchingSelfRelationships.feature MergeIntoAcceptance.feature MergeNodeAcceptance.feature MergeRelationshipAcceptance.feature MiscellaneousErrorAcceptance.feature NullAcceptance.feature OptionalMatchAcceptance.feature OptionalMatch.feature OrderByAcceptance.feature PathEquality.feature PatternComprehension.feature ReturnAcceptance2.feature ReturnAcceptance.feature SemanticErrorAcceptance.feature SetAcceptance.feature SkipLimitAcceptance.feature StartingPointAcceptance.feature StartsWithAcceptance.feature SyntaxErrorAcceptance.feature TernaryLogicAcceptance.feature TriadicSelection.feature TypeConversionFunctions.feature UnionAcceptance.feature UnwindAcceptance.feature VarLengthAcceptance2.feature VarLengthAcceptance.feature WhereAcceptance.feature WithAcceptance.feature; do
cp opencypher-tests/src/cucumberTest/resources/features-not-yet-working/$f opencypher-tests/src/cucumberTest/resources/features
rm -rf opencypher-tests/build/reports/cucumberTest/
./gradlew cucumberT
if [[ -d "opencypher-tests/build/reports/cucumberTest" ]]; then
# it was working
rm opencypher-tests/src/cucumberTest/resources/features-not-yet-working/$f
else
# it wasn't working after all
rm opencypher-tests/src/cucumberTest/resources/features/$f
fi
done;