blob: 7a4785eda113838dcf0458f59f1e3009ecb9bd74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd">
<!-- contains valid tests that the compiler has never passed -->
<suite>
<ajc-test dir="incremental/stringliteral"
keywords="incremental-test"
comment="compare known limitation in injars form; also fails inconsistently?"
title="incrementally change only string literal, still expect advice">
<compile staging="true" options="-incremental"
sourceroots="src"/>
<run class="packageOne.Main"
options="in packageOne.Main.main(..),
before main packageOne.Main"/>
<inc-compile tag="20">
<dir-changes updated="packageOne.Main"/>
</inc-compile>
<run class="packageOne.Main"
options="in longer packageOne.Main.main(..),
before main packageOne.Main"/>
</ajc-test>
</suite>
|