Skip to content

Commit acce476

Browse files
committed
Fixed lint issues
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 32deade commit acce476

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

src/dbSta/test/cpp/TestDbSta.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#include "gtest/gtest.h"
99
#include "odb/db.h"
10+
#include "rsz/Resizer.hh"
1011
#include "tst/IntegratedFixture.h"
1112

1213
namespace rsz {

src/tst/BUILD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ cc_library(
5858
name = "integrated_fixture",
5959
srcs = ["src/IntegratedFixture.cpp"],
6060
hdrs = ["include/tst/IntegratedFixture.h"],
61-
includes = ["."],
62-
visibility = ["//visibility:public"],
6361
data = [
6462
"//test:nangate45_data",
6563
"//test:sky130hd_data",
66-
],
64+
],
65+
includes = ["."],
66+
visibility = ["//visibility:public"],
6767
deps = [
6868
":tst",
6969
"//src/ant",
@@ -81,6 +81,6 @@ cc_library(
8181
"@bazel_tools//tools/cpp/runfiles",
8282
"@googletest//:gtest",
8383
"@spdlog",
84-
"@tk_tcl//:tcl",
84+
"@tk_tcl//:tcl",
8585
],
8686
)

src/tst/include/tst/IntegratedFixture.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
// Copyright (c) 2024, The OpenROAD Authors
33
#pragma once
44

5+
#include <string>
6+
57
#include "ant/AntennaChecker.hh"
68
#include "db_sta/dbNetwork.hh"
79
#include "dpl/Opendp.h"
810
#include "est/EstimateParasitics.h"
911
#include "grt/GlobalRouter.h"
1012
#include "odb/db.h"
1113
#include "rsz/Resizer.hh"
12-
#include "sta/Units.hh"
1314
#include "stt/SteinerTreeBuilder.h"
1415
#include "tst/fixture.h"
1516
#include "utl/CallBackHandler.h"

src/tst/src/IntegratedFixture.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@
44
#include "tst/IntegratedFixture.h"
55

66
#include <fstream>
7+
#include <string>
78

89
#include "db_sta/dbReadVerilog.hh"
910
#include "db_sta/dbSta.hh"
1011
#include "odb/db.h"
12+
#include "odb/dbTypes.h"
1113
#include "sta/Clock.hh"
1214
#include "sta/Graph.hh"
15+
#include "sta/MinMax.hh"
16+
#include "sta/NetworkClass.hh"
1317
#include "sta/Sdc.hh"
18+
#include "sta/SdcClass.hh"
19+
#include "sta/Transition.hh"
20+
#include "sta/Units.hh"
21+
#include "sta/VerilogReader.hh"
1422
#include "sta/VerilogWriter.hh"
15-
#include "utl/Logger.h"
1623

1724
namespace tst {
1825

0 commit comments

Comments
 (0)