Advertisement
Guest User

Untitled

a guest
Sep 9th, 2014
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. Downloads.xml----
  2. <?xml version="1.0"?>
  3. <!--Phoronix Test Suite v5.0.1 (Khanino)-->
  4. <PhoronixTestSuite>
  5. <Downloads>
  6. <Package>
  7. <URL>https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/32.0/source/firefox-32.0.source.tar.bz2</URL>
  8. <MD5>859d0b6fe2d36b6959cf08cee4c783cc</MD5>
  9. <SHA512>e9422c92846bda9dfa4da914be1206c41a8edde7e8bb13d81211433fc2c9013bbaee9bded40f7acf031d675272b04d7902d5631d2932daa3a8a594f768c87974</SHA512>
  10. <FileSize>149914070</FileSize>
  11. </Package>
  12. </Downloads>
  13. </PhoronixTestSuite>
  14. ------------------
  15.  
  16. install.sh--------
  17. #!/bin/sh
  18.  
  19. echo "#!/bin/sh
  20. cd firefox/
  21. make -s -j \$NUM_CPU_JOBS 2>&1
  22. echo \$? > ~/test-exit-status" > build-firefox
  23.  
  24. chmod +x build-firefox
  25. --------------------
  26.  
  27. interim.sh----------
  28. #!/bin/sh
  29.  
  30. cd firefox/
  31. make clean
  32. ---------------------
  33.  
  34. post.sh--------------
  35. #!/bin/sh
  36.  
  37. rm -rf firefox/
  38. ----------------------
  39.  
  40. pre.sh----------------
  41. #!/bin/sh
  42.  
  43. rm -rf firefox/
  44. rm -rf mozilla-release/
  45.  
  46. tar -xjvf firefox-32.0.source.tar.bz2
  47. mv mozilla-release firefox/
  48.  
  49. cd firefox/
  50. ./configure --enable-release > /dev/null
  51. make clean
  52. -------------------------
  53.  
  54. results-definition.xml---
  55. <?xml version="1.0"?>
  56. <!--Phoronix Test Suite v5.0.1 (Khanino)-->
  57. <PhoronixTestSuite>
  58. <SystemMonitor>
  59. <Sensor>sys.time</Sensor>
  60. </SystemMonitor>
  61. </PhoronixTestSuite>
  62. ---------------------------
  63.  
  64. test-definition.xml------
  65. <?xml version="1.0"?>
  66. <!--Phoronix Test Suite v5.0.1 (Khanino)-->
  67. <PhoronixTestSuite>
  68. <TestInformation>
  69. <Title>Timed Firefox Compilation</Title>
  70. <AppVersion>32.0</AppVersion>
  71. <Description>This test times how long it takes to build the Firefox Web Browser.</Description>
  72. <ResultScale>Seconds</ResultScale>
  73. <Proportion>LIB</Proportion>
  74. <SubTitle>Time To Compile</SubTitle>
  75. </TestInformation>
  76. <TestProfile>
  77. <Version>32.0</Version>
  78. <SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms>
  79. <SoftwareType>Utility</SoftwareType>
  80. <TestType>Processor</TestType>
  81. <License>Free</License>
  82. <Status>Verified</Status>
  83. <ExternalDependencies>build-utilities, zip, unzip, mercurial, yasm, libgtk2.0-dev, libglib2.0-dev, libdbus-1-dev, libdbus-glib-1-dev, libasound2-dev, libcurl4-openssl-dev, libiw-dev, libxt-dev, mesa-common-dev, libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev, libpulse-dev</ExternalDependencies>
  84. <ProjectURL>http://www.mozilla.org/</ProjectURL>
  85. <InternalTags>SMP</InternalTags>
  86. <Maintainer>Luke Wolf</Maintainer>
  87. </TestProfile>
  88. </PhoronixTestSuite>
  89. ------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement