You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: Since the VM images contain a **64-bit** guest OS (Ubuntu 14.04), it may not work if your system does not support a proper virtualization. For example, you may not able to run it in VirtualBox if the CPU does not support hardware virtualization such as AMD-V or VT-x.
Copy file name to clipboardExpand all lines: README.md
+21-5Lines changed: 21 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,22 @@ and finding known security vulnerabilities
24
24
25
25
The following instructions are for standard Debian/Ubuntu distributions.
26
26
27
+
### 0. Install Basic Dependencies
28
+
29
+
Install JDK 1.8:
30
+
```
31
+
$ sudo add-apt-repository ppa:webupd8team/java
32
+
$ sudo apt-get update
33
+
$ sudo apt-get install oracle-java8-installer
34
+
```
35
+
36
+
Install `git` and `maven`:
37
+
```
38
+
$ sudo apt-get install git
39
+
$ sudo apt-get install maven
40
+
```
41
+
42
+
27
43
### 1. Install K
28
44
29
45
This semantics is compatible with a customized version of the latest K framework.
@@ -118,15 +134,15 @@ $ TEST262_CORE_NEGATIVE=<list-of-negative-tests> make test262-core-negative
118
134
We provide a test result of the core test262, [test262.out](test262.out).
119
135
For each test, it reports `succeed` when passed the test, and `failed` when failed.
120
136
121
-
Note that there are two types of tests: positive and negative tests. A negative test is identified by `@negative`in its preamble. The negative tests should be failed to run.
137
+
Note that there are two types of tests: positive and negative tests. A negative test is identified by `@negative` in its preamble. The negative tests should fail to run.
122
138
123
139
### Invalid Tests
124
140
125
141
Among the 2,782 core tests, our semantics reports parsing errors for the following 6 programs,
126
-
which is, however, a correct behavior according to the language standard
142
+
which is the correct behavior according to the language standard
0 commit comments