Skip to content

Commit c4cd7ae

Browse files
author
Owen
committed
Do not use backtick as opening single quote
Replace it with '. For example, This changes an error message from failed to load class `java.nio.file.Path' to failed to load class 'java.nio.file.Path' The reason is that the convention of using ` for opening single quotes looks odd in most modern fonts. For more discussion please read: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
1 parent 91ccdfb commit c4cd7ae

File tree

139 files changed

+603
-710
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+603
-710
lines changed

jbmc/regression/jbmc/class-loading-annotations/test-array-value-annotation-on-class.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ArrayValueAnnotationOnClass.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
7-
Getting class `MyClassB' from file \.[\\/]MyClassB\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
7+
Getting class 'MyClassB' from file \.[\\/]MyClassB\.class
88
--
99
--
1010
This test checks that element classes of arrays that are given as values of a class-level annotation

jbmc/regression/jbmc/class-loading-annotations/test-array-value-annotation-on-field.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ArrayValueAnnotationOnField.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
7-
Getting class `MyClassB' from file \.[\\/]MyClassB\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
7+
Getting class 'MyClassB' from file \.[\\/]MyClassB\.class
88
--
99
--
1010
This test checks that element classes of arrays that are given as values of a field-level annotation

jbmc/regression/jbmc/class-loading-annotations/test-array-value-annotation-on-method.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ArrayValueAnnotationOnMethod.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
7-
Getting class `MyClassB' from file \.[\\/]MyClassB\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
7+
Getting class 'MyClassB' from file \.[\\/]MyClassB\.class
88
--
99
--
1010
This test checks that element classes of arrays that are given as values of a method-level

jbmc/regression/jbmc/class-loading-annotations/test-array-value-annotation-on-parameter.desc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ArrayValueAnnotationOnParameter.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
7-
Getting class `MyClassB' from file \.[\\/]MyClassB\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
7+
Getting class 'MyClassB' from file \.[\\/]MyClassB\.class
88
--
99
--
1010
This test checks that element classes of arrays that are given as values of an annotation at method

jbmc/regression/jbmc/class-loading-annotations/test-class-value-annotation-on-class.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ClassValueAnnotationOnClass.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
77
--
88
MyClassB
99
--

jbmc/regression/jbmc/class-loading-annotations/test-class-value-annotation-on-field.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ClassValueAnnotationOnField.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
77
--
88
MyClassB
99
--

jbmc/regression/jbmc/class-loading-annotations/test-class-value-annotation-on-method.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ClassValueAnnotationOnMethod.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
77
--
88
MyClassB
99
--

jbmc/regression/jbmc/class-loading-annotations/test-class-value-annotation-on-parameter.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ClassValueAnnotationOnParameter.class
33
--verbosity 10
44
^EXIT=6$
55
^SIGNAL=0$
6-
Getting class `MyClassA' from file \.[\\/]MyClassA\.class
6+
Getting class 'MyClassA' from file \.[\\/]MyClassA\.class
77
--
88
MyClassB
99
--

jbmc/regression/jbmc/classpath-class-incorrect-package/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Test.class
55
^SIGNAL=0$
66
--
77
Java main class: Test
8-
failed to open input file `Test.class'
8+
failed to open input file 'Test.class'
99
--
1010
Test.class is not in the right directory corresponding to its package.
1111
Issue: 2864

jbmc/regression/jbmc/classpath-invalid/test-jar.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Test.class
44
^EXIT=6$
55
^SIGNAL=0$
66
^the program has no entry point$
7-
^failed to load class `Test'$
7+
^failed to load class 'Test'$
88
--
99
--
1010
symex-driven lazy loading should emit "the program has no entry point" but currently doesn't

0 commit comments

Comments
 (0)