GEODE: Add test loop for geode-native on Windows

Change-Id: Iabfe97efdbd029f5217fe2cf535db9a9abdb97cb
diff --git a/jjb/geode-native-win/apache-geode-native-win-tests/win-old-integration-test.ps1 b/jjb/geode-native-win/apache-geode-native-win-tests/win-old-integration-test.ps1
new file mode 100644
index 0000000..f0cbdb4
--- /dev/null
+++ b/jjb/geode-native-win/apache-geode-native-win-tests/win-old-integration-test.ps1
@@ -0,0 +1,31 @@
+# ============LICENSE_START=======================================================
+#  Copyright (C) 2018-2020 Nordix Foundation.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+
+$env:GEODE_HOME = "${ENV:GEODE_SERVER_PATH}\apache-geode-${ENV:GEODE_SERVER_VERSION}"
+
+Write-Host "`n*** Generate Visual Studio 2019 geode-natvie project ***`n"
+cmake -B geode-native-build -G "Visual Studio 16 2019" -T"host=x64,version=${ENV:MSVC_TOOLSET_VERSION}" geode-native
+
+Write-Host "`n**** Build Old Integration tests ****`n"
+cmake --build geode-native-build --target javaobject -- /m
+cmake --build geode-native-build --target unit_test_callbacks -- /m
+cmake --build geode-native-build --target cppcache-integration-tests -- /m
+
+Write-Host "`n**** Execute Old Integration tests ****`n"
+Push-Location geode-native-build\cppcache\integration-test\
+ctest --timeout 1000 -L STABLE -C Debug -j1 --output-on-failure --schedule-random --repeat until-pass:3
\ No newline at end of file