Skip to content

Commit

Permalink
Exclude jmh from reproducibility test, since the code generator is no…
Browse files Browse the repository at this point in the history
…n-deterministic. (#791)

#699
  • Loading branch information
benjaminp authored and ittaiz committed Jul 19, 2019
1 parent e4d55ed commit 62e5d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_reproducibility.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ md5_util() {
}

non_deploy_jar_md5_sum() {
find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" | xargs -n 1 -P 5 $(md5_util) | sort
find bazel-bin/test -name "*.jar" ! -name "*_deploy.jar" ! -path 'bazel-bin/test/jmh/*' | xargs -n 1 -P 5 $(md5_util) | sort
}

test_build_is_identical() {
Expand Down

0 comments on commit 62e5d87

Please sign in to comment.