jiri-test: use `make test` for vanadium-reader-test

Update the jiri test runner to execute `make clean test` with the the v23:base profile.

Change-Id: I476ffa3dcd4ec737e123ce5d6a8bde298f5df313
diff --git a/jiri-test/internal/test/projects.go b/jiri-test/internal/test/projects.go
index 209d9ec..bed20ae 100644
--- a/jiri-test/internal/test/projects.go
+++ b/jiri-test/internal/test/projects.go
@@ -86,7 +86,8 @@
 
 // vanadiumReaderTest runs the tests for the reader example application.
 func vanadiumReaderTest(jirix *jiri.X, testName string, _ ...Opt) (*test.Result, error) {
-	return runJavaTest(jirix, testName, []string{"release", "projects", "reader", "android"}, []string{"clean", "test"})
+	testDir := filepath.Join(jirix.Root, "release", "projects", "reader")
+	return runMakefileTest(jirix, testName, testDir, "test", nil, []string{"v23:base"}, defaultProjectTestTimeout)
 }
 
 // vanadiumTodosAndroidTest confirms that the build succeeds and its tests pass.