toshsan / caliper

Automatically exported from code.google.com/p/caliper
Apache License 2.0
0 stars 0 forks source link

Consistently refer to ~/.caliper/config.properties #193

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
please make up your mind:

here it says
http://code.google.com/p/caliper/source/browse/caliper/src/main/java/com/google/
caliper/config/global.caliperrc

# Caliper global options file
# Users' ~/.caliper/config settings may override these

although code uses

http://code.google.com/p/caliper/source/browse/caliper/src/main/java/com/google/
caliper/config/CaliperConfigLoader.java

  // --------------------------------------------------------------------------
  // Location of .caliperrc
  // --------------------------------------------------------------------------

  private String caliperRcFilename = System.getProperty("user.home") + "/.caliperrc";

  @Option({"-c", "--config"})
  private void setCaliperRcFilename(String filename) {
    caliperRcFilename = filename;
  }

Original issue reported on code.google.com by Andrei.Pozolotin on 10 Jan 2013 at 6:10

GoogleCodeExporter commented 9 years ago
Yes, there are a few cleanups that need to happen for that.

Original comment by gak@google.com on 10 Jan 2013 at 6:26

GoogleCodeExporter commented 9 years ago
thank you.

Original comment by Andrei.Pozolotin on 10 Jan 2013 at 6:35

GoogleCodeExporter commented 9 years ago

Original comment by gak@google.com on 23 Feb 2013 at 12:24