Skip to content

Commit

Permalink
upgrade fray.
Browse files Browse the repository at this point in the history
  • Loading branch information
aoli-al committed Aug 15, 2024
1 parent 7411e84 commit 4e607d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Error found, you may find the error report in XXX
To replay a schedule, you may run the following command:

```bash
fray --replay /tmp/report/schedule_0.json -cp ./out/ example.FrayExample
fray --replay PATH_TO_THE_RECORDING_FOLDER -cp ./out/ example.FrayExample
```


Expand Down Expand Up @@ -386,6 +386,7 @@ echo '{
To replay that schedule, you may run the following command:

```bash
./gradlew runFray -PconfigPath="out/config.json" -PextraArgs="--iter=1000 --logger=json --scheduler=replay --path=/tmp/fray-example/schedule_XXX.json"
./gradlew runFray -PconfigPath="out/config.json" -PextraArgs="--iter=1000 --logger=json --scheduler=replay
--path=PATH_TO_THE_RECORDING_FOLDER"
```
</details>
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {

allprojects {
group = "org.pastalab.fray"
version = "0.1.2"
version = "0.1.3"
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ fun instrumentClass(path: String, inputStream: InputStream): ByteArray {
cv = ObjectNotifyInstrumenter(cv)
cv = UnsafeInstrumenter(cv)
cv = SkipMethodInstrumenter(cv)
// cv = PrintStreamInstrumenter(cv)
cv = ObjectInstrumenter(cv)
cv = SemaphoreInstrumenter(cv)
cv = CountDownLatchInstrumenter(cv)
Expand Down

0 comments on commit 4e607d2

Please sign in to comment.