aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorphaller <hallerp@gmail.com>2012-10-30 17:22:01 +0100
committerphaller <hallerp@gmail.com>2012-10-30 17:22:01 +0100
commit0f58053f9b6f8cb537dda5dc98f9219176995e91 (patch)
treeaddaa24c76d754d996263be90f2eb96ddddfc5e1 /README.md
parent283fab05599a4575dc18cdcc5f5ef13c8eb40e0d (diff)
downloadscala-async-0f58053f9b6f8cb537dda5dc98f9219176995e91.tar.gz
scala-async-0f58053f9b6f8cb537dda5dc98f9219176995e91.tar.bz2
scala-async-0f58053f9b6f8cb537dda5dc98f9219176995e91.zip
Add README
Diffstat (limited to 'README.md')
-rw-r--r--README.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7c8c27d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,36 @@
+Scala Async Project
+===================
+
+Building
+--------
+
+The async macro can be built using the `build.sh` script.
+
+Running the test suite
+----------------------
+
+Currently, the tests can be run using `partest` the testing tool used
+to test the Scala compiler and standard library. At the moment,
+running `partest` requires a working copy of the Scala compiler.
+
+In the following it is assumed that the build of the Scala compiler is
+located at `../scala` (root of the "scala" project when cloned using
+git) relative to the root directory of the async project.
+
+Moreover, in the Scala build it's necessary to copy the directory
+"build/asm/classes/scala/tools/asm" into
+"build/quick/classes/compiler/scala/tools".
+
+Finally, it's necessary to set the following environment variables:
+
+{{{
+SCALAC_OPTS='-cp classes'
+JAVA_OPTS='-cp classes'
+}}}
+
+After this setup, we can run `partest` as follows:
+
+{{{
+$ ../scala/test/partest --classpath ../scala/build/quick/classes --run
+}}}
+