-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
67 additions
and
19 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
set -xe | ||
|
||
nvc -a - <<EOF | ||
entity cmdline9 is | ||
end entity; | ||
architecture test of cmdline9 is | ||
begin | ||
p: assert false; | ||
end architecture; | ||
EOF | ||
|
||
nvc -e cmdline9 | ||
|
||
ls -l work | ||
|
||
[ -f work/_WORK.CMDLINE9.elab.so ] || exit 99 | ||
|
||
nvc -r cmdline9 && exit 66 | ||
|
||
nvc -a - <<EOF | ||
entity cmdline9 is | ||
end entity; | ||
architecture test of cmdline9 is | ||
begin | ||
p: process is | ||
begin | ||
report "running new code"; | ||
wait; | ||
end process; | ||
end architecture; | ||
EOF | ||
|
||
nvc -e cmdline9 --jit | ||
nvc -r cmdline9 | ||
|
||
[ ! -f work/_WORK.CMDLINE9.elab.so ] || exit 22 |
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 |
---|---|---|
|
@@ -909,3 +909,4 @@ issue809 normal,2008 | |
range3 normal,2008 | ||
issue810 normal,2008 | ||
elab40 normal,2008 | ||
cmdline9 shell,slow |
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