build.xml (d7740c70) | build.xml (96b3c68e) |
---|---|
1<?xml version="1.0"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the --- 267 unchanged lines hidden (view full) --- 276 <echo>Open ${test.report.index} in browser to view the test report.</echo> 277 </target> 278 279 <target name="test" depends="check.build,find.build,download.build,install.build,run.test" description="Run testing on the specified build. The build is automatically downloaded and installed according to the context."> 280 <fail message="Test Failed" if="test.failed" /> 281 </target> 282 283 <target name="detect.testenv" unless="report.test.skip"> | 1<?xml version="1.0"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the --- 267 unchanged lines hidden (view full) --- 276 <echo>Open ${test.report.index} in browser to view the test report.</echo> 277 </target> 278 279 <target name="test" depends="check.build,find.build,download.build,install.build,run.test" description="Run testing on the specified build. The build is automatically downloaded and installed according to the context."> 280 <fail message="Test Failed" if="test.failed" /> 281 </target> 282 283 <target name="detect.testenv" unless="report.test.skip"> |
284 <exec outputproperty="test.os.name" executable="lsb_release" failifexecutionfails="false" os="linux"> | 284 <exec outputproperty="test.os.name" executable="lsb_release" failifexecutionfails="false" os="Linux"> |
285 <arg line="-is" /> 286 </exec> | 285 <arg line="-is" /> 286 </exec> |
287 <exec outputproperty="test.os.version" executable="lsb_release" failifexecutionfails="false" os="linux"> | 287 <exec outputproperty="test.os.version" executable="lsb_release" failifexecutionfails="false" os="Linux"> |
288 <arg line="-rs" /> 289 </exec> 290 <property name="test.os.name" value="${os.name}" /> 291 <property name="test.os.version" value="${os.version}" /> 292 <property name="test.os.arch" value="${os.arch}" /> 293 <echo>${test.os.name}-${test.os.version}-${test.os.arch}</echo> 294 </target> 295 --- 31 unchanged lines hidden --- | 288 <arg line="-rs" /> 289 </exec> 290 <property name="test.os.name" value="${os.name}" /> 291 <property name="test.os.version" value="${os.version}" /> 292 <property name="test.os.arch" value="${os.arch}" /> 293 <echo>${test.os.name}-${test.os.version}-${test.os.arch}</echo> 294 </target> 295 --- 31 unchanged lines hidden --- |