Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: perf/go/db/db_test.go

Issue 813443002: Overhaul database package (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Assume the MySQL password is "" when running locally Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « perf/go/db/db.go ('k') | perf/go/ingest/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package db 1 package db
2 2
3 import ( 3 import (
4 "testing" 4 "testing"
5 5
6 "skia.googlesource.com/buildbot.git/go/database/testutil" 6 "skia.googlesource.com/buildbot.git/go/database/testutil"
7 ) 7 )
8 8
9 func TestSQLiteVersioning(t *testing.T) {
10 testutil.SQLiteVersioningTests(t, migrationSteps)
11 }
12
13 func TestMySQLVersioning(t *testing.T) { 9 func TestMySQLVersioning(t *testing.T) {
14 testutil.MySQLVersioningTests(t, "skia", migrationSteps) 10 testutil.MySQLVersioningTests(t, "skia", migrationSteps)
15 } 11 }
OLDNEW
« no previous file with comments | « perf/go/db/db.go ('k') | perf/go/ingest/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698