Skip to content

Commit

Permalink
Merge pull request #26 from vitessio/rename-main
Browse files Browse the repository at this point in the history
  • Loading branch information
systay authored May 10, 2024
2 parents a5b4b65 + 9df95a5 commit 134b977
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ go.work
.DS_Store

# the produced binary
vitess-tester
./vitess-tester
errors/
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ GO := go
default: build

build:
$(GO) build -o vitess-tester ./src
$(GO) build -o vitess-tester ./src/vitess-tester

debug:
$(GO) build -gcflags="all=-N -l" -o vitess-tester ./src
$(GO) build -gcflags="all=-N -l" -o vitess-tester ./src/vitess-tester

test: build
$(GO) test -cover ./...
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Vitess tester tests Vitess using the same test files as the [MySQL Test Framework](https://github.com/mysql/mysql-server/tree/8.0/mysql-test).

## Install

```
go install github.com/vitessio/vitess-tester/src/vitess-tester@latest
```

## Testing methodology

To ensure compatibility and correctness, our testing strategy involves running identical queries against both MySQL and vtgate, then comparing the results and errors from the two systems. This approach helps us verify that vtgate behaves as expected in a variety of scenarios, mimicking MySQL's behavior as closely as possible.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 134b977

Please sign in to comment.