Skip to content

Commit

Permalink
Document how to test the working code
Browse files Browse the repository at this point in the history
  • Loading branch information
tchajed committed Jul 20, 2024
1 parent 7893555 commit 2fe8317
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,11 @@ All the scripts for reproducing the results in the paper can be found in

Run all the experiments with `./osdi23/scripts/all.sh`. The results will be
generated in the CSV format under the `./exp` directory.

## Developing

To build the code that should be working, run

```
./scripts/test.sh
```
8 changes: 8 additions & 0 deletions scripts/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

set -eu

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

cd "$DIR/.."
go test ./vmvcc ./vmvcc ./txnsite ./index ./tuple ./wrbuf ./tid ./config ./common ./examples ./examples/strnum

0 comments on commit 2fe8317

Please sign in to comment.