Dear List, I would like to recompile a single class (from a text string) again and again to see if it contains bugs. The current way that I have implemented it...
Hi, I'm running Windows XP and VS.NET 2005. Checked out GOBO CVS tonight, dropped to dos, and ran vcvars32.bat. Ran boostrap msc ise and it failed. Can't find...
... It works fine with me with VS.NET 2003. I don't have VS.NET 2005 but after some investigation I think I found the problem. These C files used in Gobo's...
Hello list ! ... Actually that code is included but that's not important. What's funny is that I fixed that test in SmartEiffel just days ago. You may also...
Recently I needed to re-install SE 1.0. I used Visual Studio Express
Edition and found the same problem (can't find inttypes.h) I tried the
exact suggestion...
... It worked fine for me with VS.NET 2003, also. ... I just did a get and performed the following steps. The build appears to have failed. ================== ...
Hi, is there a standard way to calculate the type of an ET_EXPRESSION within the gobo eiffel tools, assuming that I have already compiled the system? Bernd...
... These errors look similar to what Brian described in his message yesterday. I don't know if Frederic's patch: #if defined(_MSC_VER) && (_MSC_VER >= 1400)...
... There is no such thing as ET_EXPRESSION.type because the type of the expression depends on the context. For example if we have: class A feature f is do ...
... Set the variables: set INCLUDE=%INCLUDE%;C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Include set LIB=%LIB%;C:\Program Files\Microsoft Visual...
... Did you need to set any variables like PATH, INCLUDE, or LIB? I installed the VC++ toolki 2003. When I try building gobo through the VC++ toolkit 2003...
Guys, I'd like to pass a command-line argument to one of my test classes. There are two reasons for this: 1. The test is every so slightly different if it is...
Hi Katrin, ... The spec directory contains one subdirectory for each supported Eiffel compiler (ise for ISE Eiffel, se for SmartEiffel, ve for Visual Eiffel)....
... You can use: inherit KL_ShARED_OPERATING_SYSTEM if operating_system.is_windows then ... if operating_system.is_unix then ... ... In fact I do something...
... Here's what I did... In my build.eant file I added the following line: <redefine target="test"/> I then copied the "test" target from test.eant and added...
When implementing a function like: a_string: STRING is -- A string do ... end why do you use: Result := STRING_.cloned_string ("A string!") instead of just ...
... This is legacy code, and as much as possible I try to replace the first occurrences by the latter. The reason why we used to write the former form in Gobo...
Hi, A while back I emailed the list because I couldn't bootstrap GOBO using VS.NET 2005. Based on everyones feedback I did compile it by performing the...
... Hi Brian, I used VS.NET 2005 with ISE, and that has worked fine. For stuff that won't build on VS.NET 2005, I have been using the solution described in my...
... You'll have to show us the code of the routine `test_unbounded_pool' from class UTILITY_TEST_POOL and of the routine `test_last_index_of' from class...
... {UTILITY_TEST_POOL}. test_unbounded_pool is -- Test unbounded pool local pool: POOL [POOL_ELEMENT] item, item2, item3: POOL_ELEMENT do create pool.make ...
... OK, I would suggest using `assert_integers_equal' instead of `assert_equal'. With newer versions of SmartEiffel INTEGER does not conform to ANY anymore, so...