Hi All,

I try to write a "Load Tests" for the SUnit tool in VisualGST. I know I
should use sunitScript and will change the code but I have a question
with exceptions.


$ PackageLoader fileInPackage: 'Parser'
$ package := PackageLoader packageAt: 'Parser'
$ test := package test
$ files := package fullPathsOf: (test fileIns)
$ files do: [:file | file fileIn ].

Currently the last line will give me exceptions. Now I would just like
to ignore them. So I try

$ files do: [:file |
               [file fileIn ]
                  on: Exception
                  do: [:sig | sig return: nil] ]

Is there a way to completely the exception?

thanks
        holger


_______________________________________________
help-smalltalk mailing list
help-smalltalk@gnu.org
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to