aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-13 15:16:38 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-13 15:16:38 +0200
commit4a85cd57c0fabfba5b3851361c000ae801cb43f7 (patch)
treea705607fe28734a13a8e2b44f622667309e66f28 /tests
parent14b5e46b5df76973dccd26bb07dc12c26e5d6efc (diff)
downloadnextpnr-4a85cd57c0fabfba5b3851361c000ae801cb43f7.tar.gz
nextpnr-4a85cd57c0fabfba5b3851361c000ae801cb43f7.tar.bz2
nextpnr-4a85cd57c0fabfba5b3851361c000ae801cb43f7.zip
tests: Fix ice40 tests
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/ice40/hx1k.cc1
-rw-r--r--tests/ice40/hx8k.cc1
-rw-r--r--tests/ice40/lp1k.cc1
-rw-r--r--tests/ice40/lp384.cc1
-rw-r--r--tests/ice40/lp8k.cc1
-rw-r--r--tests/ice40/up5k.cc1
6 files changed, 6 insertions, 0 deletions
diff --git a/tests/ice40/hx1k.cc b/tests/ice40/hx1k.cc
index ceae4c45..e1734fce 100644
--- a/tests/ice40/hx1k.cc
+++ b/tests/ice40/hx1k.cc
@@ -10,6 +10,7 @@ class HX1KTest : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::HX1K;
+ chipArgs.package = "tq144";
design = new Design(chipArgs);
}
diff --git a/tests/ice40/hx8k.cc b/tests/ice40/hx8k.cc
index 060e34dd..201dbdc2 100644
--- a/tests/ice40/hx8k.cc
+++ b/tests/ice40/hx8k.cc
@@ -10,6 +10,7 @@ class HX8KTest : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::HX8K;
+ chipArgs.package = "ct256";
design = new Design(chipArgs);
}
diff --git a/tests/ice40/lp1k.cc b/tests/ice40/lp1k.cc
index 85b35652..6afc8c9e 100644
--- a/tests/ice40/lp1k.cc
+++ b/tests/ice40/lp1k.cc
@@ -10,6 +10,7 @@ class LP1KTest : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::LP1K;
+ chipArgs.package = "tq144";
design = new Design(chipArgs);
}
diff --git a/tests/ice40/lp384.cc b/tests/ice40/lp384.cc
index c29938f1..77b82951 100644
--- a/tests/ice40/lp384.cc
+++ b/tests/ice40/lp384.cc
@@ -10,6 +10,7 @@ class LP384Test : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::LP384;
+ chipArgs.package = "qn32";
design = new Design(chipArgs);
}
diff --git a/tests/ice40/lp8k.cc b/tests/ice40/lp8k.cc
index ca2fc424..06543fd8 100644
--- a/tests/ice40/lp8k.cc
+++ b/tests/ice40/lp8k.cc
@@ -10,6 +10,7 @@ class LP8KTest : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::LP8K;
+ chipArgs.package = "ct256";
design = new Design(chipArgs);
}
diff --git a/tests/ice40/up5k.cc b/tests/ice40/up5k.cc
index 38bb30fd..93d5f8a2 100644
--- a/tests/ice40/up5k.cc
+++ b/tests/ice40/up5k.cc
@@ -10,6 +10,7 @@ class UP5KTest : public ::testing::Test
virtual void SetUp()
{
chipArgs.type = ChipArgs::UP5K;
+ chipArgs.package = "sg48";
design = new Design(chipArgs);
}