brought test suite up to date, fixed a dumb error that occured when parsing integers larger than 100

This commit is contained in:
alisdair sullivan 2010-06-21 23:06:55 -07:00
parent 34929a452e
commit 37f9d2a07a
8 changed files with 196 additions and 43 deletions

View file

@ -22,6 +22,9 @@
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
%% THE SOFTWARE.
main(["-d"|Mods]) ->
compile_files(Mods, [{outdir, "ebin"}, debug_info]);
main(Mods) ->
compile_files(Mods, [{outdir, "ebin"}]).