hotspot/src/share/vm/logging/log.cpp
author rehn
Mon, 04 Apr 2016 15:05:52 +0200
changeset 37247 bdbfe42632cb
parent 37245 70413a0266d4
child 37254 8631304f255c
permissions -rw-r--r--
8153254: Delegate (v)write from Log to LogTagSet Reviewed-by: stefank, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33766
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     1
/*
37108
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
33766
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     4
 *
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     8
 *
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    13
 * accompanied this code).
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    14
 *
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    18
 *
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    21
 * questions.
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    22
 *
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    23
 */
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    24
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    25
#include "precompiled.hpp"
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    26
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    27
/////////////// Unit tests ///////////////
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    28
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    29
#ifndef PRODUCT
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    30
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    31
#include "logging/log.hpp"
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    32
#include "logging/logConfiguration.hpp"
35950
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    33
#include "logging/logOutput.hpp"
33766
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    34
#include "memory/resourceArea.hpp"
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
    35
35950
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    36
#define assert_str_eq(s1, s2) \
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    37
  assert(strcmp(s1, s2) == 0, "Expected '%s' to equal '%s'", s1, s2)
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    38
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    39
#define assert_char_in(c, s) \
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    40
  assert(strchr(s, c) != NULL, "Expected '%s' to contain character '%c'", s, c)
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    41
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    42
#define assert_char_not_in(c, s) \
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    43
  assert(strchr(s, c) == NULL, "Expected '%s' to *not* contain character '%c'", s, c)
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
    44
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    45
class TestLogFile {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    46
 private:
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    47
  char file_name[256];
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    48
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    49
  void set_name(const char* test_name) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    50
    const char* tmpdir = os::get_temp_directory();
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    51
    int pos = jio_snprintf(file_name, sizeof(file_name), "%s%svmtest.%s.%d.log", tmpdir, os::file_separator(), test_name, os::current_process_id());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    52
    assert(pos > 0, "too small log file name buffer");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    53
    assert((size_t)pos < sizeof(file_name), "too small log file name buffer");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    54
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    55
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    56
 public:
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    57
  TestLogFile(const char* test_name) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    58
    set_name(test_name);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    59
    remove(name());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    60
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    61
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    62
  ~TestLogFile() {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    63
    remove(name());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    64
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    65
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    66
  const char* name() {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    67
    return file_name;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    68
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    69
};
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    70
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    71
class TestLogSavedConfig {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    72
 private:
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    73
  char* _saved_config;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    74
  char* _new_output;
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 37201
diff changeset
    75
  Log(logging) _log;
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    76
 public:
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    77
  TestLogSavedConfig(const char* apply_output = NULL, const char* apply_setting = NULL) : _new_output(0) {
37245
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
    78
    ResourceMark rm;
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    79
    _saved_config = os::strdup_check_oom(LogOutput::Stdout->config_string());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    80
    bool success = LogConfiguration::parse_log_arguments("stdout", "all=off", NULL, NULL, _log.error_stream());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    81
    assert(success, "test unable to turn all off");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    82
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    83
    if (apply_output) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    84
      _new_output = os::strdup_check_oom(apply_output);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    85
      bool success = LogConfiguration::parse_log_arguments(_new_output, apply_setting,  NULL, NULL, _log.error_stream());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    86
      assert(success, "test unable to apply test log configuration");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    87
    }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    88
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    89
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    90
  ~TestLogSavedConfig() {
37245
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
    91
    ResourceMark rm;
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    92
    if (_new_output) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    93
      bool success = LogConfiguration::parse_log_arguments(_new_output, "all=off", NULL, NULL, _log.error_stream());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    94
      assert(success, "test unable to turn all off");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    95
      os::free(_new_output);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    96
    }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    97
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    98
    bool success = LogConfiguration::parse_log_arguments("stdout", _saved_config, NULL, NULL, _log.error_stream());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
    99
    assert(success, "test unable to restore log configuration");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   100
    os::free(_saved_config);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   101
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   102
};
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   103
35852
15ca44d4ae0c 8147348: LogTagLevelExpression not properly initialized in configure_stdout
mlarsson
parents: 35228
diff changeset
   104
void Test_configure_stdout() {
35950
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   105
  ResourceMark rm;
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   106
  LogOutput* stdoutput = LogOutput::Stdout;
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   107
  TestLogSavedConfig tlsc;
35950
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   108
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   109
  // Enable 'logging=info', verifying it has been set
35852
15ca44d4ae0c 8147348: LogTagLevelExpression not properly initialized in configure_stdout
mlarsson
parents: 35228
diff changeset
   110
  LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(logging));
37239
a6cda2376a19 8153174: Remove trailing comma from log configuration listings
mlarsson
parents: 37201
diff changeset
   111
  assert_str_eq("logging=info", stdoutput->config_string());
35950
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   112
  assert(log_is_enabled(Info, logging), "logging was not properly enabled");
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   113
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   114
  // Enable 'gc=debug' (no wildcard), verifying no other tags are enabled
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   115
  LogConfiguration::configure_stdout(LogLevel::Debug, true, LOG_TAGS(gc));
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   116
  // No '+' character means only single tags are enabled, and no combinations
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   117
  assert_char_not_in('+', stdoutput->config_string());
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   118
  assert(log_is_enabled(Debug, gc), "logging was not properly enabled");
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   119
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   120
  // Enable 'gc*=trace' (with wildcard), verifying at least one tag combination is enabled (gc+...)
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   121
  LogConfiguration::configure_stdout(LogLevel::Trace, false, LOG_TAGS(gc));
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   122
  assert_char_in('+', stdoutput->config_string());
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   123
  assert(log_is_enabled(Trace, gc), "logging was not properly enabled");
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   124
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   125
  // Disable 'gc*' and 'logging', verifying all logging is properly disabled
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   126
  LogConfiguration::configure_stdout(LogLevel::Off, false, LOG_TAGS(gc));
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   127
  LogConfiguration::configure_stdout(LogLevel::Off, true, LOG_TAGS(logging));
c6142cb6bc4a 8149112: configure_stdout test depends on VM arguments
mlarsson
parents: 35852
diff changeset
   128
  assert_str_eq("all=off", stdoutput->config_string());
35852
15ca44d4ae0c 8147348: LogTagLevelExpression not properly initialized in configure_stdout
mlarsson
parents: 35228
diff changeset
   129
}
37108
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   130
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   131
static int Test_logconfiguration_subscribe_triggered = 0;
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   132
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   133
static void Test_logconfiguration_subscribe_helper() {
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   134
  Test_logconfiguration_subscribe_triggered++;
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   135
}
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   136
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   137
void Test_logconfiguration_subscribe() {
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   138
  ResourceMark rm;
37242
91e5f98fff6f 8152632: Rename LogHandle(...) to Log(...)
stefank
parents: 37201
diff changeset
   139
  Log(logging) log;
37108
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   140
37245
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   141
  TestLogSavedConfig log_cfg("stdout", "logging*=trace");
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   142
37108
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   143
  LogConfiguration::register_update_listener(&Test_logconfiguration_subscribe_helper);
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   144
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   145
  LogConfiguration::parse_log_arguments("stdout", "logging=trace", NULL, NULL, log.error_stream());
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   146
  assert(Test_logconfiguration_subscribe_triggered == 1, "subscription not triggered (1)");
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   147
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   148
  LogConfiguration::configure_stdout(LogLevel::Debug, true, LOG_TAGS(gc));
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   149
  assert(Test_logconfiguration_subscribe_triggered == 2, "subscription not triggered (2)");
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   150
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   151
  LogConfiguration::disable_logging();
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   152
  assert(Test_logconfiguration_subscribe_triggered == 3, "subscription not triggered (3)");
37201
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   153
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   154
  // We need to renable stderr error logging since "disable_logging" disable it all.
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   155
  // TestLogSavedConfig log_cfg will only renable stdout for us.
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   156
  LogConfiguration::parse_log_arguments("stderr", "all=warning", NULL, NULL, log.error_stream());
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   157
  assert(Test_logconfiguration_subscribe_triggered == 4, "subscription not triggered (3)");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   158
}
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   159
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   160
#define LOG_PREFIX_STR "THE_PREFIX "
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   161
#define LOG_LINE_STR "a log line"
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   162
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   163
size_t Test_log_prefix_prefixer(char* buf, size_t len) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   164
  int ret = jio_snprintf(buf, len, LOG_PREFIX_STR);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   165
  assert(ret > 0, "Failed to print prefix. Log buffer too small?");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   166
  return (size_t) ret;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   167
}
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   168
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   169
void Test_log_prefix() {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   170
  ResourceMark rm;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   171
  TestLogFile log_file("log_prefix");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   172
  TestLogSavedConfig log_cfg(log_file.name(), "logging+test=trace");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   173
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   174
  log_trace(logging, test)(LOG_LINE_STR);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   175
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   176
  FILE* fp = fopen(log_file.name(), "r");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   177
  assert(fp, "File read error");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   178
  char output[1024];
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   179
  if (fgets(output, 1024, fp) != NULL) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   180
    assert(strstr(output, LOG_PREFIX_STR LOG_LINE_STR), "logging prefix error");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   181
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   182
  fclose(fp);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   183
}
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   184
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   185
void Test_log_big() {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   186
  char big_msg[4096] = {0};
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   187
  char Xchar = '~';
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   188
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   189
  ResourceMark rm;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   190
  TestLogFile log_file("log_big");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   191
  TestLogSavedConfig log_cfg(log_file.name(), "logging+test=trace");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   192
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   193
  memset(big_msg, Xchar, sizeof(big_msg) - 1);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   194
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   195
  log_trace(logging, test)("%s", big_msg);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   196
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   197
  FILE* fp = fopen(log_file.name(), "r");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   198
  assert(fp, "File read error");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   199
  char output[sizeof(big_msg)+128 /*decorators*/ ];
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   200
  if (fgets(output, sizeof(output), fp) != NULL) {
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   201
    assert(strstr(output, LOG_PREFIX_STR), "logging prefix error");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   202
    size_t count = 0;
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   203
    for (size_t ps = 0 ; output[ps + count] != '\0'; output[ps + count] == Xchar ? count++ : ps++);
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   204
    assert(count == (sizeof(big_msg) - 1) , "logging msg error");
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   205
  }
928cf689af1a 8151993: Remove inclusion of inline.hpp in log.hpp
mlarsson
parents: 37200
diff changeset
   206
  fclose(fp);
37108
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   207
}
fe800ec86077 8151264: Add a notification mechanism for UL configuration changes.
rehn
parents: 35950
diff changeset
   208
37200
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   209
void Test_logtagset_duplicates() {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   210
  for (LogTagSet* ts = LogTagSet::first(); ts != NULL; ts = ts->next()) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   211
    char ts_name[512];
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   212
    ts->label(ts_name, sizeof(ts_name), ",");
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   213
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   214
    // verify that NO_TAG is never followed by a real tag
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   215
    for (size_t i = 0; i < LogTag::MaxTags; i++) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   216
      if (ts->tag(i) == LogTag::__NO_TAG) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   217
        for (i++; i < LogTag::MaxTags; i++) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   218
          assert(ts->tag(i) == LogTag::__NO_TAG,
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   219
                 "NO_TAG was followed by a real tag (%s) in tagset %s",
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   220
                 LogTag::name(ts->tag(i)), ts_name);
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   221
        }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   222
      }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   223
    }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   224
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   225
    // verify that there are no duplicate tagsets (same tags in different order)
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   226
    for (LogTagSet* other = ts->next(); other != NULL; other = other->next()) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   227
      if (ts->ntags() != other->ntags()) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   228
        continue;
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   229
      }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   230
      bool equal = true;
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   231
      for (size_t i = 0; i < ts->ntags(); i++) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   232
        LogTagType tag = ts->tag(i);
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   233
        if (!other->contains(tag)) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   234
          equal = false;
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   235
          break;
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   236
        }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   237
      }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   238
      // Since tagsets are implemented using template arguments, using both of
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   239
      // the (logically equivalent) tagsets (t1, t2) and (t2, t1) somewhere will
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   240
      // instantiate two different LogTagSetMappings. This causes multiple
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   241
      // tagset instances to be created for the same logical set. We want to
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   242
      // avoid this to save time, memory and prevent any confusion around it.
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   243
      if (equal) {
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   244
        char other_name[512];
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   245
        other->label(other_name, sizeof(other_name), ",");
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   246
        assert(false, "duplicate LogTagSets found: '%s' vs '%s' "
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   247
               "(tags must always be specified in the same order for each tagset)",
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   248
               ts_name, other_name);
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   249
      }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   250
    }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   251
  }
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   252
}
e601cf49b2d8 8151438: UL instantiates duplicate tag sets
mlarsson
parents: 37108
diff changeset
   253
37245
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   254
#define Test_logtarget_string_literal "First line"
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   255
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   256
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   257
static void Test_logtarget_on() {
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   258
  TestLogFile log_file("log_target");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   259
  TestLogSavedConfig tlsc(log_file.name(), "gc=debug");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   260
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   261
  LogTarget(Debug, gc) log;
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   262
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   263
  assert(log.is_enabled(), "assert");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   264
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   265
  // Log the line and expect it to be available in the output file.
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   266
  log.print(Test_logtarget_string_literal);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   267
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   268
  FILE* fp = fopen(log_file.name(), "r");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   269
  assert(fp != NULL, "File read error");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   270
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   271
  char output[256 /* Large enough buffer */];
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   272
  char* res = fgets(output, sizeof(output), fp);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   273
  assert(res != NULL, "assert");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   274
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   275
  assert(strstr(output, Test_logtarget_string_literal) != NULL, "log line missing");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   276
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   277
  fclose(fp);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   278
}
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   279
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   280
static void Test_logtarget_off() {
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   281
  TestLogFile log_file("log_target");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   282
  TestLogSavedConfig tlsc(log_file.name(), "gc=info");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   283
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   284
  LogTarget(Debug, gc) log;
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   285
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   286
  if (log.is_enabled()) {
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   287
    // The log config could have been redirected gc=debug to a file. If gc=debug
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   288
    // is enabled, we can only test that the LogTarget returns the same value
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   289
    // as the log_is_enabled function. The rest of the test will be ignored.
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   290
    assert(log.is_enabled() == log_is_enabled(Debug, gc), "assert");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   291
    log_warning(logging)("This test doesn't support runs with -Xlog");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   292
    return;
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   293
  }
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   294
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   295
  // Try to log, but expect this to be filtered out.
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   296
  log.print(Test_logtarget_string_literal);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   297
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   298
  // Log a dummy line so that fgets doesn't return NULL because the file is empty.
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   299
  log_info(gc)("Dummy line");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   300
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   301
  FILE* fp = fopen(log_file.name(), "r");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   302
  assert(fp != NULL, "File read error");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   303
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   304
  char output[256 /* Large enough buffer */];
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   305
  char* res = fgets(output, sizeof(output), fp);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   306
  assert(res != NULL, "assert");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   307
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   308
  assert(strstr(output, Test_logtarget_string_literal) == NULL, "log line not missing");
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   309
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   310
  fclose(fp);
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   311
}
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   312
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   313
void Test_logtarget() {
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   314
  Test_logtarget_on();
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   315
  Test_logtarget_off();
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   316
}
70413a0266d4 8152635: Create a UL class to represent a Log + Level combination
stefank
parents: 37243
diff changeset
   317
33766
3290cae587f9 8138916: Logging write function does not allow for long enough messages
rprotacio
parents:
diff changeset
   318
#endif // PRODUCT