1. 30 3月, 2019 4 次提交
  2. 15 2月, 2019 4 次提交
  3. 14 2月, 2019 8 次提交
  4. 13 2月, 2019 10 次提交
  5. 12 2月, 2019 4 次提交
  6. 11 2月, 2019 4 次提交
  7. 10 2月, 2019 4 次提交
  8. 09 2月, 2019 2 次提交
    • M
      Replace JsonCPP lib with boost::property_tree (#3528) · 18312dae
      Matteo Merli 提交于
      ### Motivation
      
      Remove compile and link dependency on JsonCPP. Instead use boost::property_tree with JSON parser. This will not require a link time dependency.
      18312dae
    • S
      [tests] Allow configure integration test suite file using system property (#3558) · 9140e3f8
      Sijie Guo 提交于
      *Motivation*
      
      Sometimes users would like to only execute a set of test suite in command line.
      
      *Modifications*
      
      Make the suite file name configurable in the pom file.
      So people can run a specific test suite using
      ```
      mvn -pl tests/integration -DredirectTestOutputToFile=false -DintegrationTestSuiteFile=pulsar-thread-suite.xml clean test -PintegrationTests
      ```
      
      Also categorize the tests info a few test suites. This would allow us break down
      the integration test job into multiple smaller test jobs.
      9140e3f8