--- old/test/hotspot/gtest/classfile/test_symbolTable.cpp 2018-07-23 15:32:43.248760459 +0200 +++ new/test/hotspot/gtest/classfile/test_symbolTable.cpp 2018-07-23 15:32:42.893759708 +0200 @@ -125,7 +125,7 @@ // Find a symbol where there will probably be only one instance. for (int i = 0; i < 100; i++) { - snprintf(symbol_name, SYM_NAME_LENGTH, "some_symbol%d", i); + sprintf(symbol_name, "some_symbol%d", i); TempNewSymbol ts = SymbolTable::new_symbol(symbol_name, CATCH); if (ts->refcount() == 1) { EXPECT_TRUE(ts->refcount() == 1) << "Symbol is just created";