openXC7 / scratchpad

Project for sharing random stuff, discussions, etc.
2 stars 0 forks source link

fuzzers/074-dump_all fails, unclear why #6

Closed hansfbaier closed 2 years ago

hansfbaier commented 2 years ago

@unbtorsten @jrrk2 Did this kind of error occur to you? Does it look familiar? fuzzfail.txt error_nodes.zip stderr.2022-02-08T06:24:29.101305.log stdout.2022-02-08T06:24:29.101305.log

jrrk2 commented 2 years ago

Have you checked out this section of the documentation, it might ring a bell:

074 will fail the first time, since it hasn’t been told to ignore certain wires. After it fails, go to the build directory cd fuzzers/074-dumpall/build (this is the XRAY_PART from the new settings script; in our example, the build directory is fuzzers/074-dump_all/build_xc7a100tfgg676-1/). Run python3 ../analyze_errors.py --output_ignore_list > new-ignored Inspect and compare new-ignored against existing ignored wire files in ../ignored_wires/. If it looks good, copy it to an appropriately-named file: cp new-ignored ../ignored_wires/artix7/_ignored_wires.txt (in our example, it is ../ignored_wires/artix7/xc7a100tfgg676-1_ignored_wires.txt). Add it: git add ../ignored_wires/artix7/_ignored_wires.txt

this is from:

https://symbiflow.readthedocs.io/projects/prjxray/en/latest/db_dev_process/newpart.html

hansfbaier commented 2 years ago

@jrrk2 Ah yes, I remember now. Thank you so much!