aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ice40')
-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);
}