3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-23 04:49:15 +00:00
Commit graph

16829 commits

Author SHA1 Message Date
nella
e7cc04954d Convert memfile tests 2026-03-20 16:32:46 +01:00
nella
ca77e0a5db Convert memlib tests 2026-03-20 16:32:46 +01:00
Miodrag Milanovic
0297eabeb3 Make test simple 2026-03-20 16:16:58 +01:00
Miodrag Milanovic
323747e3de Better fix 2026-03-20 15:38:24 +01:00
Miodrag Milanovic
4ff4af7389 Try fixing tests 2026-03-20 15:12:51 +01:00
Miodrag Milanovic
799c07a126 Did share, opt_share and fsm 2026-03-20 12:47:15 +01:00
Miodrag Milanovic
2b10385edd Convert xprop tests 2026-03-18 15:25:28 +01:00
Miodrag Milanovic
de8b6286b8 Converted some more 2026-03-18 09:54:33 +01:00
Miodrag Milanovic
d0ac6d9791 Converted blif tests 2026-03-18 09:45:33 +01:00
Miodrag Milanovic
92bdccf2be Convert memories tests 2026-03-18 08:46:58 +01:00
Miodrag Milanovic
77147fb0db Correctly handle errors 2026-03-18 08:46:34 +01:00
Miodrag Milanovic
fa92d22660 Document not covered 2026-03-16 15:45:59 +01:00
Miodrag Milanovic
488f144245 Convert autotest script wrapper 2026-03-16 13:07:11 +01:00
Miodrag Milanovic
896fac04ed cleanup 2026-03-16 10:48:10 +01:00
Miodrag Milanovic
af3a53720c Use generic testing on few more places 2026-03-16 10:13:10 +01:00
Miodrag Milanovic
80fff7ce09 cleanup 2026-03-13 11:18:03 +01:00
Miodrag Milanovic
f2e1ac23a2 add prep 2026-03-13 11:15:21 +01:00
Miodrag Milanovic
413b9a4639 Add common.mk 2026-03-13 11:00:08 +01:00
Miodrag Milanovic
144da16583 report on summary 2026-03-13 10:15:17 +01:00
Miodrag Milanovic
903c74e42b Look for all result files 2026-03-13 10:10:34 +01:00
Miodrag Milanovic
f9cd49f7b9 Save results, and create summary and report 2026-03-13 09:51:15 +01:00
Miodrag Milanovic
2fb0ca49ff Convert gen-tests shell script to python 2026-03-13 08:38:05 +01:00
Miodrag Milanovic
486c3715fb Enabled realmath that was disabled for some reason 2026-03-11 08:02:11 +01:00
Miodrag Milanovic
2123121d23 Fix deprecation warning 2026-03-10 16:15:07 +01:00
Miodrag Milanovic
8a6954413f Clean some seed-tests outputs 2026-03-10 15:57:24 +01:00
Miodrag Milanovic
ede782d7e3 Clean some seed-tests outputs 2026-03-10 11:50:30 +01:00
Miodrag Milanovic
a155994868 Cleanup for abcopt-tests 2026-03-10 11:18:05 +01:00
Miodrag Milanovic
169b9994dc Ignore some generated files 2026-03-10 11:05:47 +01:00
Miodrag Milanovic
c08a2aa3ff Do not write to console for makefile-tests 2026-03-10 11:02:20 +01:00
Miodrag Milanovic
6526e88d14 Propagate ABCOPT and SEEDOPT 2026-03-10 10:15:27 +01:00
Miodrag Milanovic
1a864c72ae Make sure targets are built for tests 2026-03-10 10:08:52 +01:00
Miodrag Milanovic
108a9133d0 Move clean for tests in proper Makefile 2026-03-10 10:01:23 +01:00
Miodrag Milanovic
92ef719434 Split vanilla-test to separate Makefile 2026-03-10 09:41:39 +01:00
Miodrag Milanović
de99d67bbd
Merge pull request #5733 from YosysHQ/update_abc
Update ABC as per 2026-03-09
2026-03-09 12:42:13 +00:00
Miodrag Milanovic
fea0d18c0a Update ABC as per 2026-03-09 2026-03-09 13:04:45 +01:00
Emil J
2f1cdc2df9
Merge pull request #5728 from povik/tcl-set-result
Replace deprecated Tcl API to fix use-after-free
2026-03-06 13:36:48 +00:00
Martin Povišer
167c6c4585 Replace deprecated Tcl API to fix use-after-free
Under Tcl 9.0 the Tcl_SetResult utility is a macro:

	#define Tcl_SetResult(interp, result, freeProc) \
		do { \
		    const char *__result = result; \
		    Tcl_FreeProc *__freeProc = freeProc; \
		    Tcl_SetObjResult(interp, Tcl_NewStringObj(__result, -1)); \
		    if (__result != NULL && __freeProc != NULL && __freeProc != TCL_VOLATILE) { \
			if (__freeProc == TCL_DYNAMIC) { \
			    Tcl_Free((char *)__result); \
			} else { \
			    (*__freeProc)((char *)__result); \
			} \
		    } \
		} while(0)

Temporaries constructed as part of the 'result' expression will be
dropped before the 'result' pointer is used. What was safe when
Tcl_SetResult was a function isn't safe with the macro definition.
Transition away from deprecated SetResult to calling
SetObjResult/MewStringObj directly.
2026-03-06 11:52:17 +01:00
Lofty
050483a6b2
Merge pull request #5698 from YosysHQ/lofty/analogdevices
synth_analogdevices: synthesis for Analog Devices EFLX FPGAs [sc-273]
2026-03-06 08:57:59 +00:00
Miodrag Milanovic
602f3fd1a5 Add missing EOL 2026-03-06 09:10:55 +01:00
Miodrag Milanovic
52533b0d1c Update opt_lut_ins and stat for analogdevices and remove ecp5 2026-03-06 09:10:36 +01:00
Miodrag Milanović
95d738edc0
Merge pull request #5726 from YosysHQ/emil/double-expose-yosys_celltypes
celltypes: include newcelltypes to allow legacy code access to migrat…
2026-03-05 11:36:36 +00:00
Emil J
629bf3dffd
Merge pull request #5630 from apullin/array-assignment
ast: Add support for array-to-array assignment
2026-03-05 11:10:12 +00:00
Emil J. Tywoniak
23eb38fe3f celltypes: include newcelltypes to allow legacy code access to migrated yosys_celltypes 2026-03-05 11:59:20 +01:00
Lofty
da83c93673 analogdevices: fix SHIFTX name 2026-03-05 05:37:13 +00:00
Lofty
f3efa51b3e analogdevices: fix SHREG name 2026-03-05 05:37:13 +00:00
Lofty
e2e8245be9 analogdevices: fix MUXF78 name 2026-03-05 05:37:13 +00:00
Lofty
c747466a7a analogdevices: update missed T40LP timings 2026-03-05 05:37:13 +00:00
Lofty
91740645a9 analogdevices: update T40LP timings 2026-03-05 05:37:13 +00:00
Lofty
709746b184 analogdevices: update T16FFC timings 2026-03-05 05:37:13 +00:00
Lofty
cd60dd4912 synth_analogdevices: update timing model and tests 2026-03-05 05:37:13 +00:00