-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor test helper related to logical driver change (#739)
* Refactoring to shared test area Signed-off-by: Chris Lavin <[email protected]> * Add license header Signed-off-by: Chris Lavin <[email protected]> --------- Signed-off-by: Chris Lavin <[email protected]>
- Loading branch information
1 parent
a3016d6
commit e8d5532
Showing
3 changed files
with
53 additions
and
24 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
test/shared/com/xilinx/rapidwright/design/TestDesignHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright (c) 2023, Advanced Micro Devices, Inc. | ||
* All rights reserved. | ||
* | ||
* Author: Chris Lavin, AMD Research and Advanced Development. | ||
* | ||
* This file is part of RapidWright. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package com.xilinx.rapidwright.design; | ||
|
||
import com.xilinx.rapidwright.device.Device; | ||
|
||
public class TestDesignHelper { | ||
|
||
public static Net createTestNet(Design design, String netName, String[] pips) { | ||
Net net = design.createNet(netName); | ||
TestDesignHelper.addPIPs(net, pips); | ||
return net; | ||
} | ||
|
||
public static void addPIPs(Net net, String[] pips) { | ||
Device device = net.getDesign().getDevice(); | ||
for (String pip : pips) { | ||
net.addPIP(device.getPIP(pip)); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters