Skip to content

Commit

Permalink
rename executable to ExecLogDiffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Bao committed Jun 17, 2021
1 parent 266007d commit be581e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kt_jvm_library(
)

java_binary(
name = "executable",
name = "ExecLogDiffer",
main_class = "com.airbnb.execlog_parser.ExecLogParser",
runtime_deps = [":ExecLogParser"],
)
Expand Down
6 changes: 3 additions & 3 deletions integration-test/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
There are two logs here.

Run `bazel build :executable` from repo root
Run `bazel-bin/executable ./integration-test/exec1.log ./integration-test/exec2.log`
Run `bazel build :ExecLogDiffer` from repo root
Run `bazel-bin/ExecLogDiffer ./integration-test/exec1.log ./integration-test/exec2.log`

You should get some output, saying `tools/swift/swift-idl-parser/thrift_grammar.srcjar` has differing file
hashes

Now rerun `bazel-bin/executable ./integration-test/exec1.log ./integration-test/exec2.log ./integration-test/allowlist`
Now rerun `bazel-bin/ExecLogDiffer ./integration-test/exec1.log ./integration-test/exec2.log ./integration-test/allowlist`

No output and exit code should be 0

0 comments on commit be581e4

Please sign in to comment.