zsh-workers
 help / color / mirror / code / Atom feed
* Building with icc 10
@ 2007-06-14  3:53 Vin Shelton
  0 siblings, 0 replies; only message in thread
From: Vin Shelton @ 2007-06-14  3:53 UTC (permalink / raw)
  To: zsh workers

[-- Attachment #1: Type: text/plain, Size: 576 bytes --]

I recently downloaded version 10 of the non-commercial Intel C
Compiler for linux and decided to try it out on my Kubuntu 7.04 system
by compiling the zsh sources.  Icc generated a very large number of
warnings, most of which are rubbish.  I have attached the compressed
output from the compiler here - I hope no one finds 16KB too large an
attachment to send to the list.

I have also attached the results of 3 failing test cases, in case
anyone wants to investigate.

Thanks,
  Vin

-- 
The Journey by Mary Oliver
http://www.poemhunter.com/p/m/poem.asp?poet=6771&poem=30506

[-- Attachment #2: mk.out.bz2 --]
[-- Type: application/x-bzip2, Size: 15935 bytes --]

[-- Attachment #3: Y01.out --]
[-- Type: application/octet-stream, Size: 2598 bytes --]

if test -n "/opt/intel/cc/10.0.023/bin/icc"; then \
	  cd .. && DESTDIR= \
	  make MODDIR=`pwd`/Test/Modules install.modules > /dev/null; \
	fi
for f in ../../../src/zsh-2007-06-13/Test/Y01*.ztst; do \
	  ZTST_exe=../Src/zsh \
	    ../Src/zsh +Z -f ../../../src/zsh-2007-06-13/Test/ztst.zsh $f; \
	done
../../../src/zsh-2007-06-13/Test/Y01completion.ztst: starting.
ZTST_getsect: read section name: prep
ZTST_getchunk: read code chunk:
  if ( zmodload -i zsh/zpty ) >/dev/null 2>&1; then
    . $ZTST_srcdir/comptest
    mkdir comp.tmp
    cd comp.tmp
    comptestinit -z $ZTST_testdir/../Src/zsh &&
    {
      mkdir dir1 &&
      mkdir dir2 &&
      touch file1 &&
      touch file2
    }
  else
    ZTST_unimplemented="the zsh/zpty module is not available"
  fi
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

ZTST_getsect: read section name: test
ZTST_test: looking for new test
ZTST_test: examining line:

ZTST_test: examining line:
  comptest $': \t\t\t\t\t\t\t'
ZTST_getchunk: read code chunk:
  comptest $': \t\t\t\t\t\t\t'
ZTST_test: examining line:
>line: {: }{}
ZTST_getredir: read redir for '>':
line: {: }{}
DESCRIPTION:{file}
DI:{dir1}
DI:{dir2}
FI:{file1}
FI:{file2}
line: {: dir1/}{}
line: {: dir2/}{}
line: {: file1}{}
line: {: file2}{}
line: {: dir1/}{}
line: {: dir2/}{}
ZTST_test: examining line:

Running test: directories and files
ZTST_test: expecting status: 0
Input: /tmp/zsh.ztst.in.11087, output: /tmp/zsh.ztst.out.11087, error: /tmp/zsh.ztst.terr.11087
ZTST_execchunk: status 0
ZTST_test: test produced standard output:
line: {: }{}
line: {: }{}
line: {: }{}
line: {: }{}
line: {: }{}
line: {: }{}
line: {: }{}
ZTST_test: and standard error:

*** /tmp/zsh.ztst.out.11087	Wed Jun 13 23:42:05 2007
--- /tmp/zsh.ztst.tout.11087	Wed Jun 13 23:42:06 2007
***************
*** 1,12 ****
  line: {: }{}
! DESCRIPTION:{file}
! DI:{dir1}
! DI:{dir2}
! FI:{file1}
! FI:{file2}
! line: {: dir1/}{}
! line: {: dir2/}{}
! line: {: file1}{}
! line: {: file2}{}
! line: {: dir1/}{}
! line: {: dir2/}{}
--- 1,7 ----
  line: {: }{}
! line: {: }{}
! line: {: }{}
! line: {: }{}
! line: {: }{}
! line: {: }{}
! line: {: }{}
Test ../../../src/zsh-2007-06-13/Test/Y01completion.ztst failed: output differs from expected as shown above for:
  comptest $': \t\t\t\t\t\t\t'
Was testing: directories and files
../../../src/zsh-2007-06-13/Test/Y01completion.ztst: test failed.
ZTST_getsect: read section name: clean
ZTST_getchunk: read code chunk:
  zmodload -ui zsh/zpty
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

make: [check] Error 1 (ignored)
rm -rf Modules .zcompdump

[-- Attachment #4: Y02.out --]
[-- Type: application/octet-stream, Size: 2829 bytes --]

if test -n "/opt/intel/cc/10.0.023/bin/icc"; then \
	  cd .. && DESTDIR= \
	  make MODDIR=`pwd`/Test/Modules install.modules > /dev/null; \
	fi
for f in ../../../src/zsh-2007-06-13/Test/Y02*.ztst; do \
	  ZTST_exe=../Src/zsh \
	    ../Src/zsh +Z -f ../../../src/zsh-2007-06-13/Test/ztst.zsh $f; \
	done
../../../src/zsh-2007-06-13/Test/Y02compmatch.ztst: starting.
ZTST_getsect: read section name: prep
ZTST_getchunk: read code chunk:
  if ( zmodload -i zsh/zpty ) >/dev/null 2>&1; then
    . $ZTST_srcdir/comptest
    mkdir match.tmp
    cd match.tmp
    comptestinit -z $ZTST_testdir/../Src/zsh &&
    {
      list1=(IndianRed IndianRed2 IndianRed3 IndianRed4)
      test_code () {
    	matcher=$1;
    	list=$2;
    	code="compdef _tst tst ; _tst () { echo -n '<COMPADD>';compadd -M '"
    	code="$code$matcher"
    	code="$code'  - ${(P)list} ; echo  -n '</COMPADD>'"
          code="$code; $extra_cmd"
          code="$code; echo -n '<INSERT_POSITIONS>'"
          code="$code; echo \$compstate[insert_positions]"
          code="$code; echo -n '</INSERT_POSITIONS>'"
          code="$code}"
    	comptesteval "$code"
      }
    }
  else
    ZTST_unimplemented="the zsh/zpty module is not available"
  fi
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

ZTST_getsect: read section name: test
ZTST_test: looking for new test
ZTST_test: examining line:

ZTST_test: examining line:
 test_code z: list1
ZTST_getchunk: read code chunk:
 test_code z: list1
 comptest  $'tst \t'
ZTST_test: examining line:
>line: {tst }{}
ZTST_getredir: read redir for '>':
line: {tst }{}
COMPADD:{_tst:compadd: unknown match specification character `z'}
INSERT_POSITIONS:{}
ZTST_test: examining line:

Running test: Match Error for "z:"
ZTST_test: expecting status: 0
Input: /tmp/zsh.ztst.in.11207, output: /tmp/zsh.ztst.out.11207, error: /tmp/zsh.ztst.terr.11207
ZTST_execchunk: status 0
ZTST_test: test produced standard output:
line: {tst }{}
COMPADD:{_tst:compadd: bad option: - }
INSERT_POSITIONS:{}
ZTST_test: and standard error:

*** /tmp/zsh.ztst.out.11207	Wed Jun 13 23:42:07 2007
--- /tmp/zsh.ztst.tout.11207	Wed Jun 13 23:42:07 2007
***************
*** 1,3 ****
  line: {tst }{}
! COMPADD:{_tst:compadd: unknown match specification character `z'}
  INSERT_POSITIONS:{}
--- 1,3 ----
  line: {tst }{}
! COMPADD:{_tst:compadd: bad option: - }
  INSERT_POSITIONS:{}
Test ../../../src/zsh-2007-06-13/Test/Y02compmatch.ztst failed: output differs from expected as shown above for:
 test_code z: list1
 comptest  $'tst \t'
Was testing: Match Error for "z:"
../../../src/zsh-2007-06-13/Test/Y02compmatch.ztst: test failed.
ZTST_getsect: read section name: clean
ZTST_getchunk: read code chunk:
  zmodload -ui zsh/zpty
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

make: [check] Error 1 (ignored)
rm -rf Modules .zcompdump

[-- Attachment #5: Y03.out --]
[-- Type: application/octet-stream, Size: 2911 bytes --]

if test -n "/opt/intel/cc/10.0.023/bin/icc"; then \
	  cd .. && DESTDIR= \
	  make MODDIR=`pwd`/Test/Modules install.modules > /dev/null; \
	fi
for f in ../../../src/zsh-2007-06-13/Test/Y03*.ztst; do \
	  ZTST_exe=../Src/zsh \
	    ../Src/zsh +Z -f ../../../src/zsh-2007-06-13/Test/ztst.zsh $f; \
	done
../../../src/zsh-2007-06-13/Test/Y03arguments.ztst: starting.
ZTST_getsect: read section name: prep
ZTST_getchunk: read code chunk:
  if ( zmodload -i zsh/zpty ) >/dev/null 2>&1; then
    . $ZTST_srcdir/comptest
    mkdir comp.tmp
    cd comp.tmp
    comptestinit -z $ZTST_testdir/../Src/zsh &&
    {
      comptesteval 'compdef _tst tst'
      tst_arguments () { comptesteval "_tst () { _arguments ${${(@qq)*}} }" }
    }
  else
    ZTST_unimplemented="the zsh/zpty module is not available"
  fi
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

ZTST_getsect: read section name: test
ZTST_test: looking for new test
ZTST_test: examining line:
 tst_arguments ':desc1:(arg1)'
ZTST_getchunk: read code chunk:
 tst_arguments ':desc1:(arg1)'
 comptest $'tst \t\C-wa\t\C-war\t\C-warg\t\C-warg1\t\C-wr\t\C-wx\t \ty \t'
ZTST_test: examining line:
>line: {tst arg1 }{}
ZTST_getredir: read redir for '>':
line: {tst arg1 }{}
line: {tst arg1 }{}
line: {tst arg1 }{}
line: {tst arg1 }{}
line: {tst arg1 }{}
line: {tst r}{}
line: {tst x}{}
line: {tst x }{}
MESSAGE:{no more arguments}
line: {tst x y }{}
MESSAGE:{no more arguments}
ZTST_test: examining line:

Running test: one non-option argument
ZTST_test: expecting status: 0
Input: /tmp/zsh.ztst.in.11324, output: /tmp/zsh.ztst.out.11324, error: /tmp/zsh.ztst.terr.11324
ZTST_execchunk: status 0
ZTST_test: test produced standard output:
line: {tst }{}
line: {a}{}
line: {ar}{}
line: {arg}{}
line: {arg1}{}
line: {r}{}
line: {x}{}
line: {x }{}
line: {x y }{}
ZTST_test: and standard error:

*** /tmp/zsh.ztst.out.11324	Wed Jun 13 23:42:08 2007
--- /tmp/zsh.ztst.tout.11324	Wed Jun 13 23:42:09 2007
***************
*** 1,11 ****
! line: {tst arg1 }{}
! line: {tst arg1 }{}
! line: {tst arg1 }{}
! line: {tst arg1 }{}
! line: {tst arg1 }{}
! line: {tst r}{}
! line: {tst x}{}
! line: {tst x }{}
! MESSAGE:{no more arguments}
! line: {tst x y }{}
! MESSAGE:{no more arguments}
--- 1,9 ----
! line: {tst }{}
! line: {a}{}
! line: {ar}{}
! line: {arg}{}
! line: {arg1}{}
! line: {r}{}
! line: {x}{}
! line: {x }{}
! line: {x y }{}
Test ../../../src/zsh-2007-06-13/Test/Y03arguments.ztst failed: output differs from expected as shown above for:
 tst_arguments ':desc1:(arg1)'
 comptest $'tst \t\C-wa\t\C-war\t\C-warg\t\C-warg1\t\C-wr\t\C-wx\t \ty \t'
Was testing: one non-option argument
../../../src/zsh-2007-06-13/Test/Y03arguments.ztst: test failed.
ZTST_getsect: read section name: clean
ZTST_getchunk: read code chunk:
  zmodload -ui zsh/zpty
ZTST_execchunk: status 0
ZTST_getchunk: read code chunk:

make: [check] Error 1 (ignored)
rm -rf Modules .zcompdump

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-06-14  3:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-14  3:53 Building with icc 10 Vin Shelton

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).