1
1
/*
2
- * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
65
65
* @requires (jpackage.test.SQETest == null)
66
66
* @build jdk.jpackage.test.*
67
67
* @requires (os.family == "windows")
68
- * @modules jdk.jpackage/jdk.jpackage.internal
68
+ * @modules jdk.incubator. jpackage/jdk.incubator .jpackage.internal
69
69
* @compile WinUpgradeUUIDTest.java
70
70
* @run main/othervm/timeout=540 -Xmx512m jdk.jpackage.test.Main
71
71
* --jpt-run=WinUpgradeUUIDTest
@@ -79,10 +79,6 @@ public static void test() {
79
79
final UUID upgradeCode = UUID .fromString (
80
80
"F0B18E75-52AD-41A2-BC86-6BE4FCD50BEB" );
81
81
return new PackageTest ()
82
- .forTypes (PackageType .WINDOWS )
83
- .configureHelloApp ()
84
- .addInitializer (cmd -> cmd .addArguments ("--win-upgrade-uuid" ,
85
- upgradeCode .toString ()))
86
82
.forTypes (PackageType .WIN_MSI )
87
83
.addBundlePropertyVerifier ("UpgradeCode" , value -> {
88
84
if (value .startsWith ("{" )) {
@@ -92,7 +88,12 @@ public static void test() {
92
88
value = value .substring (0 , value .length () - 1 );
93
89
}
94
90
return UUID .fromString (value ).equals (upgradeCode );
95
- }, "is a match with" );
91
+ }, "is a match with" )
92
+ .forTypes (PackageType .WINDOWS )
93
+ .configureHelloApp ()
94
+ .addInitializer (cmd -> cmd .addArguments ("--win-upgrade-uuid" ,
95
+ upgradeCode .toString ())) ;
96
+
96
97
};
97
98
98
99
// Replace real uninstall command for the first package with nop action.
0 commit comments