From cdf18b9c2b935b8208bc5170bf54b7815b03a9a4 Mon Sep 17 00:00:00 2001 From: Emil Sjolander Date: Tue, 2 Aug 2016 08:07:01 -0700 Subject: [PATCH] Update readme with java instructions Summary: Java instructions were missing from the readme. Add a quick note about how to run tests in java. Reviewed By: lucasr Differential Revision: D3648981 fbshipit-source-id: d9009a60bb1bb0837722f914981ef4e31f0adb68 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8eea5ba1..7b9d22a5 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,6 @@ See CSSLayout/CSSLayout.h for a look at the public API being exposed. Building -------- -CSSLayout builds with buck (buckbuild.com). To build run `buck build //:CSSLayout` and run `buck test //:CSSLayout` to run the test suite. +CSSLayout builds with buck (buckbuild.com). To build run `buck build //:CSSLayout` and run `buck test //:CSSLayout` to run the test suite. For java the equivalent is `buck build //:CSSLayout_java` and `buck test //:CSSLayout_java`. + +To run benchmarks run `buck run //:CSSLayout:benchmark`. There are currently no benchmarks for the java version.