Remove old IC: update on-off tests
This commit is contained in:
Vendored
+56
@@ -0,0 +1,56 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Building module1
|
||||
Actions after cache changed: [CLEAN_NORMAL_CACHES, CLEAN_DATA_CONTAINER]
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Building module3
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Building module1
|
||||
Actions after cache changed: [REBUILD_ALL_KOTLIN, REBUILD_CHUNK]
|
||||
Cleaning output files:
|
||||
out/production/module1/AKt.class
|
||||
out/production/module1/META-INF/module1.kotlin_module
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/a.kt
|
||||
End of files
|
||||
Marked as dirty by Kotlin:
|
||||
module1/src/a.kt
|
||||
module2/src/c.kt
|
||||
module3/src/d.kt
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Building module2
|
||||
Actions after cache changed: [REBUILD_CHUNK, DO_NOTHING]
|
||||
Cleaning output files:
|
||||
out/production/module2/B.class
|
||||
out/production/module2/CKt.class
|
||||
out/production/module2/META-INF/module2.kotlin_module
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/c.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
Compiling files:
|
||||
module2/src/B.java
|
||||
End of files
|
||||
Building module3
|
||||
Actions after cache changed: [REBUILD_CHUNK, DO_NOTHING]
|
||||
Cleaning output files:
|
||||
out/production/module3/DKt.class
|
||||
out/production/module3/META-INF/module3.kotlin_module
|
||||
End of files
|
||||
Compiling files:
|
||||
module3/src/d.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
jps-plugin/testData/incremental/changeIncrementalOption/incrementalOffOnJavaChanged/dependencies.txt
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
module1->
|
||||
module2->module1
|
||||
module3->module2
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
kotlin-data-container
|
||||
data-container-format-version.txt
|
||||
counters.tab
|
||||
file-to-id.tab
|
||||
id-to-file.tab
|
||||
lookups.tab
|
||||
Module 'module1' production
|
||||
format-version.txt
|
||||
jvm-build-meta-info.txt
|
||||
internal-name-to-source.tab
|
||||
package-parts.tab
|
||||
proto.tab
|
||||
source-to-classes.tab
|
||||
Module 'module1' tests
|
||||
Module 'module2' production
|
||||
format-version.txt
|
||||
jvm-build-meta-info.txt
|
||||
internal-name-to-source.tab
|
||||
package-parts.tab
|
||||
proto.tab
|
||||
source-to-classes.tab
|
||||
Module 'module2' tests
|
||||
Module 'module3' production
|
||||
format-version.txt
|
||||
jvm-build-meta-info.txt
|
||||
internal-name-to-source.tab
|
||||
package-parts.tab
|
||||
proto.tab
|
||||
source-to-classes.tab
|
||||
Module 'module3' tests
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
fun a() {}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
class B {}
|
||||
+1
@@ -0,0 +1 @@
|
||||
class B {}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
fun c() {}
|
||||
+1
@@ -0,0 +1 @@
|
||||
off
|
||||
+1
@@ -0,0 +1 @@
|
||||
on
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
fun d() {}
|
||||
Reference in New Issue
Block a user