Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dbSta/test/cpp/TestDbSta.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class TestDbSta : public tst::IntegratedFixture
{
protected:
TestDbSta()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/dbSta/test/")
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/dbSta/test/cpp/TestReadVerilog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TestReadVerilog : public tst::IntegratedFixture
{
public:
TestReadVerilog()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/dbSta/test/")
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/dbSta/test/cpp/TestWriteVerilog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TestWriteVerilog : public tst::IntegratedFixture
{
public:
TestWriteVerilog()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/dbSta/test/")
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/odb/test/cpp/TestWriteReadDbHier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TestWriteReadDbHier : public tst::IntegratedFixture
{
protected:
TestWriteReadDbHier()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/odb/test/")
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/rsz/test/cpp/TestBufferRemoval3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class BufRemTest3 : public tst::IntegratedFixture
{
protected:
BufRemTest3()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/rsz/test/")
{
if (debug_) {
Expand Down
2 changes: 1 addition & 1 deletion src/rsz/test/cpp/TestInsertBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestInsertBuffer : public tst::IntegratedFixture
{
public:
TestInsertBuffer()
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::Nangate45,
: tst::IntegratedFixture(tst::IntegratedFixture::Technology::kNangate45,
"_main/src/rsz/test/")
{
if (debug_) {
Expand Down
4 changes: 2 additions & 2 deletions src/tst/include/tst/IntegratedFixture.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class IntegratedFixture : public tst::Fixture
public:
enum class Technology
{
Nangate45,
Sky130hd
kNangate45,
kSky130hd
};

IntegratedFixture(Technology tech, const std::string& test_root_path);
Expand Down
4 changes: 2 additions & 2 deletions src/tst/src/IntegratedFixture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ IntegratedFixture::IntegratedFixture(Technology tech,
test_root_path_(test_root_path)
{
switch (tech) {
case Technology::Nangate45: {
case Technology::kNangate45: {
const std::string nangate45_tech_path = "_main/test/Nangate45/";
readLiberty(getFilePath(nangate45_tech_path + "Nangate45_typ.lib"));
lib_ = loadTechAndLib("Nangate45",
Expand All @@ -56,7 +56,7 @@ IntegratedFixture::IntegratedFixture(Technology tech,
break;
}

case Technology::Sky130hd: {
case Technology::kSky130hd: {
const std::string sky130hd_tech_path = "_main/test/sky130hd/";
readLiberty(getFilePath(sky130hd_tech_path + "sky130_fd_sc_hd_tt.lib"));
lib_ = loadTechAndLib(
Expand Down
Loading